Created
December 16, 2019 20:30
-
-
Save aballah-chamakh/8fb2242b793d2dbed0036e462c250d56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .... | |
# configure celery and redis | |
BROKER_URL = 'redis://localhost:6379' | |
CELERY_RESULT_BACKEND = 'redis://' | |
CELERY_ACCEPT_CONTENT = ['application/json'] | |
CELERY_RESULT_SERIALIZER = 'json' | |
CELERY_TASK_SERIALIZER = 'json' | |
# .... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment