src/iconolab_mcc/wsgi.py
author Riwad Salim
Thu, 05 Jul 2018 12:43:26 +0200
changeset 20 a07ea7805cc4
parent 0 c21813f95c41
permissions -rw-r--r--
Adding one migration and adapting templates for link images collections in iconolab-mcc

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