Spaces:
Running
Running
File size: 275 Bytes
a6c3990 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Start FastAPI backend in the background
python -m uvicorn backend:app --host 0.0.0.0 --port 8000 &
BACKEND_PID=$!
# Start Streamlit frontend
streamlit run app.py --server.port 8501 --server.address 0.0.0.0
# Kill backend when frontend stops
kill $BACKEND_PID |