diff --git a/MUOR/MUOR/celery.py b/MUOR/MUOR/celery.py new file mode 100644 index 000000000..162f7029c --- /dev/null +++ b/MUOR/MUOR/celery.py @@ -0,0 +1,8 @@ +import os +from celery import Celery + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MUOR.settings') + +app = Celery('MUOR') +app.config_from_object('django.conf:settings', namespace='CELERY') +app.autodiscover_tasks()