feat: add Docker and Railway deployment config

This commit is contained in:
Alan Alonso
2026-05-23 01:06:30 -06:00
parent 451e005c30
commit 1886ab6094
2 changed files with 38 additions and 0 deletions

13
railway.json Normal file
View File

@@ -0,0 +1,13 @@
{
"$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"
]
}