Instantly share code, notes, and snippets.

Embed
What would you like to do?
from __future__ import absolute_import
import os
from celery import Celery
from django.conf import settings
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conf.settings')
app = Celery('myclient', include=settings.CELERY_IMPORTS)
app.config_from_object('django.conf:settings')
app.autodiscover_tasks(settings.INSTALLED_APPS, related_name='tasks')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment