Files
django-relay-controller/relaycontroller/home/celerymodule.py
T
2026-03-10 13:10:32 +01:00

11 lines
239 B
Python

#
# encoding: utf-8
import os
from celery import Celery
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'home.settings')
appc = Celery('home')
appc.config_from_object('django.conf:settings', namespace='CELERY')
appc.autodiscover_tasks()