second commit

This commit is contained in:
2026-04-13 23:14:05 +02:00
parent 1c031ebf63
commit e08597fc72
125 changed files with 26221 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#
# 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()