Spaces:
Runtime error
Runtime error
# Start Nginx in the background | |
nohup nginx -g "daemon off;" & | |
# Start the Flask application with Gunicorn | |
cd backend | |
exec gunicorn -b 0.0.0.0:5000 --workers=3 -t 600 "app:app" | |