2WSGI config for mp_integration project.
4It exposes the WSGI callable as a module-level variable named ``application``.
6For more information on this file, see
7https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/
14sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
17sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
19from django.core.wsgi
import get_wsgi_application
21os.environ.setdefault(
'DJANGO_SETTINGS_MODULE',
'mp_integration.settings')
23application = get_wsgi_application()