Skip to content

Instantly share code, notes, and snippets.

@adam-hert
Created July 14, 2016 19:03
Show Gist options
  • Save adam-hert/455972f8a1a7da80a25906e40a74b608 to your computer and use it in GitHub Desktop.
Save adam-hert/455972f8a1a7da80a25906e40a74b608 to your computer and use it in GitHub Desktop.
"""
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