File size: 184 Bytes
d773e1b |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
# Start script for backend Flask app on Hugging Face Spaces
export FLASK_APP=app.py
export FLASK_ENV=production
# Run the Flask app on 0.0.0.0:7860
python backend/app.py
|