2024-03-06 17:58:25 +05:30
|
|
|
// 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.
|
2024-03-06 14:03:48 +05:30
|
|
|
module.exports = {
|
|
|
|
apps : [{
|
|
|
|
name : "Xantic",
|
2024-03-06 17:58:25 +05:30
|
|
|
script : "./src/index.js",
|
2024-03-06 14:03:48 +05:30
|
|
|
}]
|
2024-03-06 17:58:25 +05:30
|
|
|
}
|