From a65f60b4a6ccd51a6ca3c2345ef758d46de4610e Mon Sep 17 00:00:00 2001 From: Tyler Lafleur Date: Fri, 19 Sep 2025 21:44:17 -0500 Subject: [PATCH] Fix Railway deployment path: use absolute paths and uv run MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Use absolute path /app/mcp_server in deploy command - Switch to uv run for automatic virtual environment handling - Eliminates cd command failures in Railway deployment environment 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- railway.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/railway.json b/railway.json index 14755d0b..fae12493 100644 --- a/railway.json +++ b/railway.json @@ -4,7 +4,7 @@ "buildCommand": "cd mcp_server && uv sync" }, "deploy": { - "startCommand": "cd mcp_server && python graphiti_mcp_server.py --transport sse --host 0.0.0.0 --port 8080", + "startCommand": "cd /app/mcp_server && uv run graphiti_mcp_server.py --transport sse --host 0.0.0.0 --port 8080", "restartPolicyType": "on_failure", "restartPolicyMaxRetries": 10 }