eb2 / run.sh
nbugs's picture
Upload 12 files
d119685 verified
raw
history blame contribute delete
156 Bytes
#!/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