14 lines
264 B
JSON
14 lines
264 B
JSON
{
|
|
"$schema": "https://railway.app/railway.schema.json",
|
|
"build": {
|
|
"builder": "dockerfile"
|
|
},
|
|
"deploy": {
|
|
"numReplicas": 1,
|
|
"startCommand": "python -m uvicorn app.main:app --host 0.0.0.0 --port $PORT"
|
|
},
|
|
"plugins": [
|
|
"postgresql"
|
|
]
|
|
}
|