diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..9a3e12c --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn --bind :$PORT --workers 1 --threads 1 --timeout 300 main:app diff --git a/gunicorn.conf.py b/gunicorn.conf.py index c37aa36..55c0522 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -1,4 +1,4 @@ # gunicorn.conf.py -timeout = 120 +timeout = 300 workers = 1 threads = 1