You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
import os
|
|
|
|
from celery import Celery
|
|
|
|
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'crossposting_backend.settings')
|
|
|
|
|
|
|
|
CELERY_TIMEZONE = 'Europe/Moscow'
|
|
|
|
|
|
|
|
app = Celery('cms')
|
|
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
|
|
app.autodiscover_tasks()
|
|
|
|
|
|
|
|
@app.task(bind=True)
|
|
|
|
def debug_task(self):
|
|
|
|
print(f'Request {self.request!r}')
|