added ecosystem.config.js

This commit is contained in:
WeeXnes 2025-02-27 11:06:30 +01:00
parent 35728822c2
commit f20dda9261
2 changed files with 9 additions and 11 deletions

View file

@ -1,11 +0,0 @@
module.exports = {
apps: [
{
name: 'ServerPanel',
port: '6060',
exec_mode: 'cluster',
instances: 'max',
script: './.output/server/index.mjs'
}
]
}

9
ecosystem.config.js Normal file
View file

@ -0,0 +1,9 @@
export const apps = [
{
name: 'ServerPanel',
port: '6060',
exec_mode: 'fork',
instances: 'max',
script: './.output/server/index.mjs'
}
];