Files
dss.api/dss/celeryconf.py
2015-10-28 20:45:47 +00:00

18 lines
473 B
Python

import os
import logging
from celery import Celery
logger = logging.getLogger('dss')
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dss.settings')
from django.conf import settings
app = Celery('dss')
# Using a string here means the worker will not have to
# pickle the object when using Windows.
app.config_from_object('django.conf:settings')
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)