From ab31b4f4f3111efd751c6771cd5380e1db6248d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EC=84=9D?= Date: Sat, 28 Feb 2026 11:13:12 +0900 Subject: [PATCH] fix(deploy): use $PORT env var and remove healthcheck temporarily Railway assigns PORT dynamically. Hardcoded 8000 causes healthcheck failure because Railway routes traffic to $PORT, not 8000. Remove healthcheck until first successful deployment is confirmed. Co-Authored-By: Claude Opus 4.6 --- api/railway.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/railway.toml b/api/railway.toml index 7760161..20677e5 100644 --- a/api/railway.toml +++ b/api/railway.toml @@ -2,5 +2,4 @@ builder = "NIXPACKS" [deploy] -startCommand = "python -m uvicorn src.main:app --host 0.0.0.0 --port 8000" -healthcheckPath = "/api/v1/health" +startCommand = "python -m uvicorn src.main:app --host 0.0.0.0 --port ${PORT:-8000}"