| { | |
| "$schema": "https://railway.app/railway.schema.json", | |
| "build": { | |
| "builder": "NIXPACKS", | |
| "buildCommand": "pip install -r requirements.txt" | |
| }, | |
| "deploy": { | |
| "startCommand": "python api_server.py", | |
| "restartPolicyType": "ON_FAILURE", | |
| "restartPolicyMaxRetries": 10, | |
| "volumeMounts": [ | |
| { | |
| "mountPath": "/app/data/user_embeddings", | |
| "volumeName": "user-embeddings-storage" | |
| } | |
| ] | |
| } | |
| } | |