Subh775's picture
Create start.sh
0838c6b verified
raw
history blame
230 Bytes
#!/usr/bin/env bash
set -euo pipefail
# ensure checkpoint directory exists; model will auto-download in app init if missing
mkdir -p /tmp
# run app
exec gunicorn --bind 0.0.0.0:7860 --workers 1 --threads 4 --timeout 120 app:app