16 lines
355 B
Python
16 lines
355 B
Python
from __future__ import absolute_import
|
|
|
|
import os
|
|
|
|
from celery import Celery
|
|
|
|
from django.conf import settings
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
|
|
'gnuviechadmin.settings.production')
|
|
|
|
|
|
app = Celery('gnuviechadmin')
|
|
|
|
app.config_from_object('django.conf:settings')
|
|
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
|