fix procfile to allow a decent amout of concurrent jobs

This commit is contained in:
codl 2017-09-20 13:45:20 +02:00
parent b0b17ae39f
commit b9b3d8bab2
No known key found for this signature in database
GPG Key ID: 6CD7C8891ED1233A
1 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,3 @@
web: gunicorn -w 9 -t 3600 -b 127.0.0.1:42157 forget:app
worker: python tasks.py -B -Ofair
worker: celery -A tasks worker --concurrency=16
beat: celery -A tasks beat