Spaces:
Runtime error
Runtime error
File size: 269 Bytes
654c6af | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
set -e
# Start Streamlit frontend on HF's $PORT
/app/.venv/bin/streamlit run frontend/app.py \
--server.address=0.0.0.0 \
--server.port=7860 &
# Start FastAPI backend on port 8000
/app/.venv/bin/uvicorn backend.main:app --host 0.0.0.0 --port 8000 |