From 0eabfaa9060088930462d6e8b2ddba4e7a837c89 Mon Sep 17 00:00:00 2001 From: Eric0801 <33929918+Eric0801@users.noreply.github.com> Date: Sun, 19 Oct 2025 20:31:07 +0800 Subject: [PATCH] fix: use fixed port 8000 instead of $PORT variable --- railway.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railway.json b/railway.json index e825a2b..64a2e9b 100644 --- a/railway.json +++ b/railway.json @@ -5,7 +5,7 @@ "dockerfilePath": "Dockerfile" }, "deploy": { - "startCommand": "gunicorn -w 2 -b 0.0.0.0:$PORT --timeout 120 --chdir /flask main:app", + "startCommand": "gunicorn -w 2 -b 0.0.0.0:8000 --timeout 120 --chdir /flask main:app", "restartPolicyType": "ON_FAILURE", "restartPolicyMaxRetries": 10 }