Spaces:
Sleeping
Sleeping
saifisvibinn commited on
Commit ·
77ed5bd
1
Parent(s): d19cc77
Add Railway deployment configuration
Browse files- Procfile +1 -0
- requirements.txt +4 -1
Procfile
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
web: uvicorn backend.main:app --host 0.0.0.0 --port $PORT
|
requirements.txt
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
sendgrid
|
| 2 |
-
streamlit
|
| 3 |
pandas
|
| 4 |
openpyxl
|
| 5 |
PyMuPDF
|
|
|
|
|
|
| 1 |
+
fastapi
|
| 2 |
+
uvicorn[standard]
|
| 3 |
+
python-multipart
|
| 4 |
sendgrid
|
|
|
|
| 5 |
pandas
|
| 6 |
openpyxl
|
| 7 |
PyMuPDF
|
| 8 |
+
python-dotenv
|