2018-04-15 16:29:30 +01:00
|
|
|
"""
|
|
|
|
WSGI config for mysite project.
|
|
|
|
|
|
|
|
It exposes the WSGI callable as a module-level variable named ``application``.
|
|
|
|
|
|
|
|
For more information on this file, see
|
2020-07-20 22:53:26 +01:00
|
|
|
https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/
|
2018-04-15 16:29:30 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2023-01-19 18:30:05 +00:00
|
|
|
|
2018-04-15 16:29:30 +01:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
|
|
|
|
|
|
|
|
from django.core.wsgi import get_wsgi_application
|
2023-01-19 18:30:05 +00:00
|
|
|
|
2018-04-15 16:29:30 +01:00
|
|
|
application = get_wsgi_application()
|