Created
December 16, 2017 14:59
-
-
Save bencleary/c38d8c2aceee3d4ce16b773908e68e54 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
from __future__ import absolute_import, unicode_literals | |
import os | |
from celery import Celery | |
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'crunchy_waffles.settings') | |
app = Celery('crunchy_waffles') | |
app.config_from_object('django.conf:settings', namespace='CELERY') | |
app.autodiscover_tasks() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment