First commit

This commit is contained in:
Élie Bouttier 2014-08-01 19:49:57 -07:00
commit 8aa77915ad
47 changed files with 19884 additions and 0 deletions

14
issuetracker/wsgi.py Normal file
View file

@ -0,0 +1,14 @@
"""
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()