Update ecosystem.config.js

Signed-off-by: Rajdeep Malakar <rajdeepm.dev@gmail.com>
This commit is contained in:
Rajdeep Malakar 2024-03-06 17:58:25 +05:30
parent d2f16e4e3e
commit a5c65ae583
1 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,9 @@
// This is a script to be used by PM2
// To use it, run `pm2 start ecosystem.config.js`
// This script should be used in conjunction with the `check_and_restart.sh` file.
module.exports = {
apps : [{
name : "Xantic",
script : "./index.js",
script : "./src/index.js",
}]
}
}