Added pm2 ecosystem file.

This commit is contained in:
DebaucheryLibrarian 2024-06-06 03:04:24 +02:00
parent ba2d68089a
commit e5f88dbcb9
1 changed files with 29 additions and 0 deletions

29
ecosystem.config.js Normal file
View File

@ -0,0 +1,29 @@
// 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',
},
}] : []),
*/
],
};