Files
omniai-server/ecosystem.config.js
T

14 lines
242 B
JavaScript
Raw Normal View History

2026-06-02 13:14:10 +08:00
module.exports = {
apps: [{
name: 'omniai-server',
script: './src/index.js',
instances: 4,
exec_mode: 'cluster',
env: {
NODE_ENV: 'production',
},
max_memory_restart: '512M',
merge_logs: true,
}],
};