Files
core/pm2.dev.config.js
2022-01-18 16:45:46 +08:00

18 lines
316 B
JavaScript

module.exports = {
apps: [
{
name: 'mx-server',
script: 'dist/src/main.js',
autorestart: true,
exec_mode: 'fork',
watch: false,
max_memory_restart: '230M',
env: {
NODE_ENV: 'production',
},
args: '--allowed_origins=dev.* --cluster',
},
],
}