qmsk_www/wsgi.py
author Tero Marttila <terom@qmsk.net>
Mon, 03 Jul 2017 22:42:48 +0300
changeset 252 9ba399a7cff3
parent 191 d04496d8beed
permissions -rw-r--r--
dockerfile
"""
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()