nest-admin-main/ecosystem.config.js

23 lines
410 B
JavaScript
Raw Permalink Normal View History

2024-09-11 16:32:57 +08:00
const { cpus } = require('node:os')
const cpuLen = cpus().length
module.exports = {
apps: [
{
name: 'nest-admin',
script: './dist/main.js',
autorestart: true,
exec_mode: 'cluster',
watch: false,
instances: cpuLen,
max_memory_restart: '1G',
args: '',
env: {
NODE_ENV: 'production',
PORT: process.env.APP_PORT,
},
},
],
}