terom@191: """ terom@237: WSGI config for qmsk_pngtile project. terom@191: terom@191: It exposes the WSGI callable as a module-level variable named ``application``. terom@191: terom@191: For more information on this file, see terom@191: https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/ terom@191: """ terom@191: terom@191: import os terom@237: os.environ.setdefault("DJANGO_SETTINGS_MODULE", "qmsk_pngtile.settings") terom@191: terom@191: from django.core.wsgi import get_wsgi_application terom@191: application = get_wsgi_application()