Files
Genarrative/server-node/ecosystem.config.cjs
small268 82aef85d52
Some checks failed
CI / verify (push) Has been cancelled
update: CI-scripts
2026-04-17 00:30:04 +08:00

19 lines
343 B
JavaScript

module.exports = {
apps: [
{
name: 'genarrative-server',
script: 'dist/server.js',
cwd: __dirname,
instances: 1,
exec_mode: 'fork',
watch: false,
env: {
NODE_ENV: 'production',
},
error_file: 'logs/error.log',
out_file: 'logs/out.log',
time: true,
},
],
};