| echo "STARTING FASTAPI..." | |
| uvicorn backend.app:app \ | |
| --host 0.0.0.0 \ | |
| --port 8000 & | |
| sleep 5 | |
| echo "STARTING STREAMLIT..." | |
| streamlit run frontend/app.py \ | |
| --server.port 7860 \ | |
| --server.address 0.0.0.0 |
| echo "STARTING FASTAPI..." | |
| uvicorn backend.app:app \ | |
| --host 0.0.0.0 \ | |
| --port 8000 & | |
| sleep 5 | |
| echo "STARTING STREAMLIT..." | |
| streamlit run frontend/app.py \ | |
| --server.port 7860 \ | |
| --server.address 0.0.0.0 |