Created
July 14, 2016 19:03
-
-
Save adam-hert/455972f8a1a7da80a25906e40a74b608 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
WSGI config for dt project. | |
It exposes the WSGI callable as a module-level variable named ``application``. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/ | |
""" | |
import os | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dt.settings") | |
from django.core.wsgi import get_wsgi_application | |
application = get_wsgi_application() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment