Skip to content

Instantly share code, notes, and snippets.

@bencleary
Created December 16, 2017 14:59
Show Gist options
  • Save bencleary/c38d8c2aceee3d4ce16b773908e68e54 to your computer and use it in GitHub Desktop.
Save bencleary/c38d8c2aceee3d4ce16b773908e68e54 to your computer and use it in GitHub Desktop.
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