traxxx-web/ecosystem.config.js

30 lines
496 B
JavaScript
Raw Normal View History

2024-06-06 01:04:24 +00:00
// import config from 'config';
export default {
apps: [
{
name: 'newtraxxx',
script: 'npm run server:prod',
exec_mode: 'cluster',
instances: 2,
restart_delay: 3000,
merge_logs: true,
env: {
NODE_ENV: 'production',
},
},
/*
...(config.analytics.enabled ? [{
name: 'umami',
script: 'npm start',
cwd: process.env.UMAMI_DIR || '../umami',
restart_delay: 3000,
merge_logs: true,
env: {
NODE_ENV: 'production',
},
}] : []),
*/
],
};