Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 580 Bytes
65b6449 e10bf6b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/bash
# Entrypoint for HF Spaces dev mode compatibility.
# Dev mode spawns CMD multiple times simultaneously on restart.
# Only the first instance can bind port 7860 — the rest must exit
# with code 0 so the dev mode daemon doesn't mark the app as crashed.
# Run uvicorn; if it fails due to port conflict, exit cleanly.
uvicorn main:app --host 0.0.0.0 --port 7860
EXIT_CODE=$?
if [ $EXIT_CODE -ne 0 ]; then
# Check if this was a port-in-use failure (another instance already running)
echo "uvicorn exited with code $EXIT_CODE, exiting gracefully."
exit 0
fi
|