jira-duplicate-detection / railway.json
Emirhan Cerrah
feat: Railway deployment with Firebase embedding cache system
69dbe78
{
"$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"
}
]
}
}