add celery app to project
This commit is contained in:
parent
81f1faee6c
commit
97634bb36a
2 changed files with 22 additions and 0 deletions
|
@ -0,0 +1 @@
|
|||
from gnuviechadmin.celery import app as celery_app
|
21
gnuviechadmin/gnuviechadmin/celery.py
Normal file
21
gnuviechadmin/gnuviechadmin/celery.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
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)
|
||||
|
||||
|
||||
@app.task(bind=True)
|
||||
def debug_task(self):
|
||||
print('Request: {0!r}'.format(self.request))
|
Loading…
Reference in a new issue