d119685
1
2
3
4
5
6
7
#!/bin/bash # Set default port for Hugging Face export PORT=${PORT:-7860} # Start the FastAPI application exec uvicorn app:app --host 0.0.0.0 --port $PORT