File size: 239 Bytes
f9b7370
147c307
f9b7370
147c307
 
 
eeba9c4
f9b7370
147c307
9b0c95b
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e

# Start Streamlit frontend on HF's $PORT
streamlit run frontend/app.py \
    --server.address=0.0.0.0 \
    --server.port=7860  &

# Start FastAPI backend on port 8000
uvicorn backend.main:app --host 0.0.0.0 --port 8000