We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98e6c5f commit 5b7825fCopy full SHA for 5b7825f
Procfile
@@ -1,2 +1,2 @@
1
-web: celery flower --port=$PORT --broker=$CLOUDAMQP_URL
+web: celery flower --port=$PORT --broker=$CLOUDAMQP_URL --auth=$FLOWER_AUTH_EMAIL
2
worker: celery -A tasks worker --loglevel=info
tasks.py
@@ -3,7 +3,7 @@
3
4
from celery import Celery
5
6
-# read credentials from environment
+# read credentials from runtime environment
7
amqp_url = getenv('CLOUDAMQP_URL')
8
9
celery = Celery('tasks', broker=amqp_url)
0 commit comments