bump up gunicorn timeout for large files

This commit is contained in:
timothycarambat 2023-08-16 17:54:00 -07:00
parent c283ae33a3
commit 1b4e29a3b9

View File

@ -1,5 +1,5 @@
#!/bin/bash
node /app/server/index.js &
{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --timeout 300 --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
wait -n
exit $?