This commit is contained in:
NotSoToothless
2026-06-28 05:01:33 -07:00
committed by GitHub
parent 0f3943c8bd
commit 377f7b8397
+6 -4
View File
@@ -54,8 +54,9 @@ module.exports = {
// Reads TSS_API_HOST/PORT from .env (default 127.0.0.1:6100). // Reads TSS_API_HOST/PORT from .env (default 127.0.0.1:6100).
{ {
name: 'tssbot-api', name: 'tssbot-api',
script: 'web/main.py', script: PY_INTERPRETER,
interpreter: PY_INTERPRETER, args: '-m web.main',
interpreter: 'none',
cwd: `${DEPLOY_PATH}/../TSSBOT`, cwd: `${DEPLOY_PATH}/../TSSBOT`,
instances: 1, instances: 1,
autorestart: true, autorestart: true,
@@ -78,8 +79,9 @@ module.exports = {
// Reads SREBOT_EXTERNAL_HOST/PORT/UPSTREAM_URL + STORAGE_VOL_PATH from .env. // Reads SREBOT_EXTERNAL_HOST/PORT/UPSTREAM_URL + STORAGE_VOL_PATH from .env.
{ {
name: 'relay-gateway', name: 'relay-gateway',
script: 'relay_gateway/gateway.py', script: PY_INTERPRETER,
interpreter: PY_INTERPRETER, args: '-m relay_gateway.gateway',
interpreter: 'none',
cwd: `${DEPLOY_PATH}/../SHARED`, cwd: `${DEPLOY_PATH}/../SHARED`,
instances: 1, instances: 1,
autorestart: true, autorestart: true,