PadmasaliGovardhan
commited on
Commit
·
219bcf9
1
Parent(s):
ee5b31c
Toml file push
Browse files- railway.toml +10 -0
railway.toml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build]
|
| 2 |
+
builder = "NIXPACKS"
|
| 3 |
+
buildCommand = "cd backend && pip install -r requirements.txt"
|
| 4 |
+
startCommand = "cd backend && uvicorn main:app --host 0.0.0.0 --port $PORT"
|
| 5 |
+
|
| 6 |
+
[env]
|
| 7 |
+
PYTHONUNBUFFERED = "1"
|
| 8 |
+
PIP_NO_CACHE_DIR = "1"
|
| 9 |
+
NIXPACKS_TIMEOUT = "1800"
|
| 10 |
+
|