nest-trpc-prisma-starter/apps/server/ecosystem.config.js
2024-04-26 02:12:44 +08:00

23 lines
408 B
JavaScript

const { cpus } = require('node:os')
const cpuLen = cpus().length
module.exports = {
apps: [
{
name: 'm-shop',
script: './dist/main.js',
autorestart: true,
exec_mode: 'cluster',
watch: false,
instances: cpuLen,
max_memory_restart: '520M',
args: '',
env: {
NODE_ENV: 'production',
PORT: process.env.APP_PORT,
},
},
],
}