src/iconolab_mcc/wsgi.py
author ymh <ymh.work@gmail.com>
Wed, 16 May 2018 00:13:16 +0200
changeset 0 c21813f95c41
permissions -rw-r--r--
First commit, extract iconolab-mcc as django project, and transform iconolab as django app

"""
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()