repo inicializado

This commit is contained in:
2026-03-17 00:48:20 -04:00
parent 157c93736c
commit 717cc11a03
33 changed files with 9416 additions and 197 deletions

10
arches/celery.py Normal file
View File

@@ -0,0 +1,10 @@
from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
ARCHES_PROJECT = os.getenv('ARCHES_PROJECT')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', f'{ARCHES_PROJECT}.settings')
app = Celery(ARCHES_PROJECT)
app.config_from_object('django.conf:settings', namespace='CELERY')
app.autodiscover_tasks()