src/iconolab_mcc/wsgi.py
author ymh <ymh.work@gmail.com>
Wed, 01 Aug 2018 18:12:55 +0200
changeset 31 2403c49a6d6e
parent 0 c21813f95c41
permissions -rw-r--r--
Take into account the new version of iconolab and increment version

"""
WSGI config for iconolab_mcc 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/2.0/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "iconolab_mcc.settings.dev")

application = get_wsgi_application()