mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
12 lines
286 B
Python
12 lines
286 B
Python
import os
|
|
|
|
from celery import Celery
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pretix.settings")
|
|
|
|
from django.conf import settings
|
|
|
|
app = Celery('pretix')
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
|