qmsk_www/wsgi.py
author Tero Marttila <terom@qmsk.net>
Sat, 04 Oct 2014 14:35:54 +0300
changeset 236 4ca68e4eb386
parent 191 d04496d8beed
permissions -rw-r--r--
qmsk.pngtile: django app for pngtile index/viewer; very raw index view
"""
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()