13 lines
284 B
Python
13 lines
284 B
Python
import os
|
|
|
|
from celery import Celery
|
|
|
|
from django.conf import settings
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
|
|
|
|
app = Celery('taiga')
|
|
|
|
app.config_from_object('django.conf:settings')
|
|
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS, related_name="deferred")
|