15 lines
403 B
Python
15 lines
403 B
Python
|
from __future__ import absolute_import
|
||
|
import os
|
||
|
|
||
|
from celery import Celery
|
||
|
|
||
|
from django.conf import settings
|
||
|
|
||
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'CodePedia2.settings')
|
||
|
app = Celery('CodePedia2')
|
||
|
app.config_from_object('django.conf:settings')
|
||
|
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
|
||
|
|
||
|
@app.task(biwnd=True)
|
||
|
def debug_task(self):
|
||
|
print('Request: {0!r}'.format(self.request))
|