ponytracker/issuetracker/wsgi.py
Élie Bouttier 8aa77915ad First commit
2014-08-01 19:49:57 -07:00

14 lines
399 B
Python

"""
WSGI config for issuetracker 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/dev/howto/deployment/wsgi/
"""
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "issuetracker.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()