2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-21 14:51:51 +00:00
troggle/wsgi.py

17 lines
383 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
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
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()