File size: 184 Bytes
9439512 | 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
|
9439512 | 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
|