File size: 241 Bytes
e6b544a |
1 2 3 4 5 6 7 8 9 10 11 |
import os
from celery import Celery
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hue_portal.hue_portal.settings")
app = Celery("hue_portal")
app.config_from_object("django.conf:settings", namespace="CELERY")
app.autodiscover_tasks()
|