diff -r 8444b4f67e45 -r 19220d52bce7 src/hdalab/celery.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/hdalab/celery.py Sun Mar 08 14:53:52 2015 +0100 @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +''' +Created on Mar 7, 2015 + +@author: ymh +''' +from __future__ import absolute_import + +import os + +from django.conf import settings + +from celery import Celery + +# set the default Django settings module for the 'celery' program. +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'hdalab.settings') + +app = Celery('hdalab') + +# 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)