Spaces:
Paused
Paused
File size: 322 Bytes
8e7b8ed |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/bin/bash
# If running in Hugging Face Spaces (SPACE_ID is set)
if [ -n "$SPACE_ID" ]; then
export NEXT_PUBLIC_API_URL="https://$SPACE_ID.hf.space"
else
# Local development
export NEXT_PUBLIC_API_URL="http://localhost:7860"
fi
# Start supervisor
exec supervisord -c /etc/supervisor/conf.d/supervisord.conf |