From 57fcccdab13bef8f247025d2583bf14485c5d70e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EC=84=9D?= Date: Fri, 27 Feb 2026 20:53:41 +0900 Subject: [PATCH] fix(deploy): use direct uvicorn command instead of start.sh NIXPACKS builder doesn't include start.sh in the build artifact, causing "cannot open ./start.sh" errors on Railway. Co-Authored-By: Claude Opus 4.6 --- api/railway.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/railway.toml b/api/railway.toml index 9ad7f43..7760161 100644 --- a/api/railway.toml +++ b/api/railway.toml @@ -2,5 +2,5 @@ builder = "NIXPACKS" [deploy] -startCommand = "sh ./start.sh" +startCommand = "python -m uvicorn src.main:app --host 0.0.0.0 --port 8000" healthcheckPath = "/api/v1/health"