qmsk_pngtile/wsgi.py
author Tero Marttila <terom@qmsk.net>
Sat, 04 Oct 2014 14:36:02 +0300
changeset 237 6698dabcc425
parent 191 qmsk_www/wsgi.py@d04496d8beed
permissions -rw-r--r--
qmsk_pngtile: django project for pngtile.qmsk.net
"""
WSGI config for qmsk_pngtile 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_pngtile.settings")

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