Using .cjs extension for pm2 ecosystem file.

This commit is contained in:
DebaucheryLibrarian 2024-06-06 03:06:11 +02:00
parent 62ddcbaaa0
commit 678c2ab5e0
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
// const config = require('config');
module.exports = {
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',
},
}] : []),
*/
],
};