Spaces:
Sleeping
Sleeping
| # Start the FastAPI backend on port 8000 in the background | |
| uvicorn api.main:app --host 0.0.0.0 --port 8000 & | |
| # Start the Streamlit frontend on port 7860 (Hugging Face Default) in the foreground | |
| python -m streamlit run app/streamlit_app.py --server.port 7860 --server.address 0.0.0.0 | |