Carpeta inicial añadida

This commit is contained in:
2026-03-16 12:08:04 -04:00
parent 157c93736c
commit f829e6a42f
35 changed files with 9396 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()