Harshit Ghosh commited on
Commit ·
dc8b958
1
Parent(s): b005e33
timeout increase
Browse files
start.sh
CHANGED
|
@@ -15,4 +15,4 @@ flask --app app_new init-db
|
|
| 15 |
|
| 16 |
# Start Gunicorn in foreground
|
| 17 |
# Hugging Face Spaces expects the app to listen on port 7860
|
| 18 |
-
gunicorn -w 4 -b 0.0.0.0:${PORT:-7860} app_new:app
|
|
|
|
| 15 |
|
| 16 |
# Start Gunicorn in foreground
|
| 17 |
# Hugging Face Spaces expects the app to listen on port 7860
|
| 18 |
+
gunicorn -w 4 -b 0.0.0.0:${PORT:-7860} --timeout 300 app_new:app
|