BakoAI / start_server.sh
icanedit2's picture
Deploy backend to HF with player video visibility fix
32bc095
Raw
History Blame Contribute Delete
268 Bytes
#!/bin/bash
# Activate virtual environment
if [ -d ".venv" ]; then
source .venv/bin/activate
elif [ -d "venv" ]; then
source venv/bin/activate
fi
# Run FastAPI server
echo "Starting Backend Server..."
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000