nest-admin-main/ecosystem.config.js
lqs 817d3102b1
Some checks failed
Build Stable Image / docker (push) Has been cancelled
Sync To Gitee / repo-sync (push) Has been cancelled
first commit
2024-09-11 16:32:57 +08:00

23 lines
410 B
JavaScript

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,
},
},
],
}