anomalyOS / start.sh
CaffeinatedCoding's picture
Upload folder using huggingface_hub
7df0705 verified
raw
history blame contribute delete
190 Bytes
#!/bin/bash
# FastAPI on internal port 8000
uvicorn api.main:app --host 0.0.0.0 --port 8000 &
# Wait for FastAPI to be ready
sleep 15
# Gradio on 7860 (HF Spaces public port)
python app.py