14 lines
362 B
JSON
14 lines
362 B
JSON
{
|
|
"$schema": "https://railway.com/railway.schema.json",
|
|
"build": {
|
|
"builder": "NIXPACKS",
|
|
"buildCommand": "poetry install --no-interaction"
|
|
},
|
|
"deploy": {
|
|
"startCommand": "poetry run uvicorn app.main:app --host 0.0.0.0 --port $PORT",
|
|
"healthcheckPath": "/v1/health",
|
|
"healthcheckTimeout": 100,
|
|
"restartPolicyType": "always"
|
|
}
|
|
}
|