15 lines
317 B
Python
15 lines
317 B
Python
import os
|
|
|
|
from celery import Celery
|
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "kadenios.settings.local")
|
|
|
|
app = Celery("kadenios")
|
|
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}")
|