23 lines
475 B
JavaScript
23 lines
475 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "botvps-api",
|
|
script: "/usr/local/bin/uvicorn",
|
|
args: "main:app --host 0.0.0.0 --port 8000",
|
|
interpreter: "python3",
|
|
cwd: "/root/Apps/BotVPS",
|
|
env: {
|
|
NODE_ENV: "production",
|
|
},
|
|
restart_delay: 3000
|
|
},
|
|
{
|
|
name: "bridge-telegram",
|
|
script: "bridge_telegram.py",
|
|
interpreter: "python3",
|
|
cwd: "/root/Apps/BotVPS",
|
|
restart_delay: 3000
|
|
}
|
|
]
|
|
};
|