All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
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>
7 lines
213 B
Python
7 lines
213 B
Python
import os
|
|
from django.core.wsgi import get_wsgi_application
|
|
|
|
# Este es el enlace con tus configuraciones
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'api_config.settings')
|
|
|
|
application = get_wsgi_application() |