qmsk_pngtile/wsgi.py
author Tero Marttila <terom@qmsk.net>
Sat, 15 Jul 2017 12:29:43 +0300
changeset 260 1d7d2fbfc855
parent 237 6698dabcc425
permissions -rw-r--r--
pngtile fix settings symlink
"""
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()