troggle-unchained/wsgi.py

17 lines
382 B
Python
Raw Normal View History

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
2023-02-10 00:05:04 +00:00
https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/
2018-04-15 16:29:30 +01:00
"""
import os
2018-04-15 16:29:30 +01:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.wsgi import get_wsgi_application
2018-04-15 16:29:30 +01:00
application = get_wsgi_application()