11 lines
251 B
Python
11 lines
251 B
Python
import os
|
|
|
|
from celery import Celery
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mumui.settings")
|
|
|
|
app = Celery("mumui", broker="redis://redis:6379/0")
|
|
|
|
app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
app.autodiscover_tasks()
|