Spaces:
Sleeping
Sleeping
Create start.sh
Browse files
start.sh
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
uvicorn main:app --host 0.0.0.0 --port 8000 &
|
| 3 |
+
# export BACKEND_URL not strictly needed as it is hardcoded in app.py now for stability
|
| 4 |
+
streamlit run app.py --server.port 7860 --server.address 0.0.0.0 --server.enableCORS=false --server.enableXsrfProtection=false
|