Tesis 1.0.0
Loading...
Searching...
No Matches
wsgi.py
Go to the documentation of this file.
1"""
2WSGI config for mp_integration project.
3
4It exposes the WSGI callable as a module-level variable named ``application``.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/
8"""
9
10import os
11import sys
12
13# Añadir carpeta padre al PYTHONPATH para importar mp_integration
14sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
15
16# Añadir carpeta 'mercadopago_service' al PYTHONPATH para que se encuentre mp_integration
17sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
18
19from django.core.wsgi import get_wsgi_application
20
21os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mp_integration.settings')
22
23application = get_wsgi_application()