12 lines
239 B
Python
12 lines
239 B
Python
import os
|
|
|
|
from celery import Celery
|
|
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "airshelf.settings.development")
|
|
|
|
app = Celery("airshelf")
|
|
app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
app.autodiscover_tasks()
|
|
|