graphiti/railway.json
Tyler Lafleur 88ebb6849c Switch to Railway Python buildpack: fix uv.lock and remove Docker forcing
PROBLEM SOLVED:
- Fixed uv.lock sync error by regenerating lockfile
- Railway now uses Python buildpack instead of fighting Docker auto-detection

CHANGES:
- Updated mcp_server/uv.lock to sync with pyproject.toml
- Removed Docker forcing files (Dockerfile, nixpacks.toml, .dockerignore)
- Updated railway.json for Python buildpack with proper start command
- Simplified approach: let Railway handle Python environment naturally

DEPLOYMENT:
- Build: 'cd mcp_server && uv sync'
- Start: 'cd mcp_server && uv run graphiti_mcp_server.py --transport sse'
- Should deploy in ~2-3 minutes with Python buildpack

🚀 Generated with Claude Code (https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-19 20:11:05 -05:00

11 lines
No EOL
301 B
JSON

{
"$schema": "https://railway.app/railway.schema.json",
"build": {
"buildCommand": "cd mcp_server && uv sync"
},
"deploy": {
"startCommand": "cd mcp_server && uv run graphiti_mcp_server.py --transport sse",
"restartPolicyType": "on_failure",
"restartPolicyMaxRetries": 10
}
}