added ecosystem.config.js
This commit is contained in:
parent
35728822c2
commit
f20dda9261
2 changed files with 9 additions and 11 deletions
|
@ -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
9
ecosystem.config.js
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
export const apps = [
|
||||||
|
{
|
||||||
|
name: 'ServerPanel',
|
||||||
|
port: '6060',
|
||||||
|
exec_mode: 'fork',
|
||||||
|
instances: 'max',
|
||||||
|
script: './.output/server/index.mjs'
|
||||||
|
}
|
||||||
|
];
|
Loading…
Add table
Reference in a new issue