Files
Media-Coding-Web/ecosystem.config.js
2026-04-04 12:36:10 +08:00

18 lines
306 B
JavaScript

module.exports = {
apps: [
{
name: 'media-coding-web',
script: './server.js',
cwd: __dirname,
env_file: '.env',
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '512M',
env: {
NODE_ENV: 'production'
}
}
]
};