learnlanguage / start.sh
hamouchi zineb
Deploy clean version to HF Space (no binary files)
009f914
raw
history blame contribute delete
237 Bytes
#!/usr/bin/env bash
set -e
# Run FastAPI in background (internal)
uvicorn backend.app.main:app --host 0.0.0.0 --port 8001 &
# Run Streamlit (public port for HF)
streamlit run frontend/app.py --server.address 0.0.0.0 --server.port 7860