Files
core/ecosystem.config.js
2022-01-18 13:00:10 +08:00

16 lines
258 B
JavaScript

module.exports = {
apps: [
{
name: 'mx-server',
script: 'index.js',
autorestart: true,
exec_mode: 'fork',
watch: false,
max_memory_restart: '230M',
env: {
NODE_ENV: 'production',
},
},
],
}