refactor: renombrar proyecto principal api_config → api_hub_dispatcher

- Renombrar carpeta app/api_config/ → app/api_hub_dispatcher/
- Actualizar DJANGO_SETTINGS_MODULE en asgi.py, wsgi.py, manage.py
- Actualizar ROOT_URLCONF y WSGI_APPLICATION en settings.py

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
juanjo
2026-04-16 23:28:43 +02:00
parent 0fc5392bd2
commit 778753afd6
7 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
import os
from django.core.wsgi import get_wsgi_application
# Este es el enlace con tus configuraciones
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'api_hub_dispatcher.settings')
application = get_wsgi_application()