ChatGPT-Next-Web/ecosystem.config.js
2025-07-01 16:50:18 +07:00

14 lines
207 B
JavaScript

module.exports = {
apps: [
{
name: 'chebi-nextjs',
script: './start.sh',
instances: 'max',
exec_mode: 'cluster',
env: {
NODE_ENV: 'production'
}
}
]
}