8 lines
207 B
Plaintext
8 lines
207 B
Plaintext
## Celery related setting: this is the default setting once we install RabbitMQ
|
|
|
|
CELERY_RESULT_BACKEND ="amqp://"
|
|
|
|
BROKER_URL = "amqp://guest:guest@localhost:5672//"
|
|
|
|
CELERY_IMPORTS=("compass.tasks.tasks",)
|