🚀 Auto-deploy: BotVPS atualizado em 27/03/2026 16:54:14

This commit is contained in:
2026-03-27 16:54:14 +00:00
parent 67dbd9079d
commit 15a777acbd
4 changed files with 58 additions and 2 deletions

22
ecosystem.config.js Normal file
View File

@@ -0,0 +1,22 @@
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
}
]
};