qmsk_www/wsgi.py
author Tero Marttila <terom@qmsk.net>
Mon, 10 Oct 2016 20:09:22 +0300
changeset 140 d4e4d9bc129d
parent 53 0e1d82a4e0f8
permissions -rw-r--r--
masters: presentation slides
"""
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()