qmsk_www/wsgi.py
author Tero Marttila <terom@paivola.fi>
Sun, 14 Sep 2014 13:54:07 +0300
changeset 97 bf230208ab8f
parent 53 0e1d82a4e0f8
permissions -rw-r--r--
qmsk_www_pages: pages TemplatePage handling for mako .tmpl pages, with DEBUG-dependent error handling
"""
WSGI config for qmsk_www 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", "qmsk_www.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()