Files
BotVPS/ecosystem.config.js

30 lines
589 B
JavaScript

module.exports = {
apps: [
{
name: "botvps-api",
script: "main.py",
interpreter: "python3",
cwd: "/root/Apps/BotVPS",
env: {
PORT: "8089",
NODE_ENV: "production",
},
restart_delay: 3000
},
{
name: "bridge-telegram",
script: "bridge_telegram.py",
interpreter: "python3",
cwd: "/root/Apps/BotVPS",
restart_delay: 3000
},
{
name: "watchdog-vps",
script: "watchdog.py",
interpreter: "python3",
cwd: "/root/Apps/BotVPS",
restart_delay: 5000
}
]
};