Files
juanjo fbc5f0f6c4
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
fix: reemplazar referencias a api_hub_dispatcher por api_config
ROOT_URLCONF, WSGI_APPLICATION, DJANGO_SETTINGS_MODULE apuntaban al
módulo renombrado — causaba ModuleNotFoundError al arrancar en Docker.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-17 01:13:52 +02:00

4 lines
167 B
Python

import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'api_config.settings')
application = get_asgi_application()