File size: 252 Bytes
9d1f825
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
set -e

# Lancer FastAPI en arrière-plan
uvicorn api:app --host 0.0.0.0 --port 8000 &

# Lancer Streamlit (port imposé par Hugging Face = $PORT, souvent 7860)
streamlit run frontend.py --server.port $PORT --server.address 0.0.0.0