Spaces:
Sleeping
Sleeping
File size: 216 Bytes
8a08300 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# Start FastAPI in the background
uvicorn src.api.main:app --host 0.0.0.0 --port 8000 &
# Start Streamlit in the foreground
streamlit run src/frontend/app.py --server.port 7860 --server.address 0.0.0.0
|