celery.py 675 Bytes
Newer Older
Feanil Patel committed
1 2 3 4 5 6
"""
Import celery, load its settings from the django settings
and auto discover tasks in all installed django apps.

Taken from: http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html
"""
7 8 9 10 11 12 13 14 15 16 17
from __future__ import absolute_import

import os

from celery import Celery

from django.conf import settings

# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')

Feanil Patel committed
18
APP = Celery('proj')
19 20 21

# Using a string here means the worker will not have to
# pickle the object when using Windows.
Feanil Patel committed
22 23
APP.config_from_object('django.conf:settings')
APP.autodiscover_tasks(lambda: settings.INSTALLED_APPS)