trace / start.sh
mrmarvelous's picture
Upload folder using huggingface_hub
19958df verified
Raw
History Blame Contribute Delete
242 Bytes
#!/bin/bash
# Start the FastAPI server with Gradio UI mounted on the same port
# HF Spaces only exposes port 7860
set -e
echo "Starting TRACE server (FastAPI + Gradio) on port 7860..."
exec uvicorn server.app:app --host 0.0.0.0 --port 7860