server/src/metaeducation/wsgi.py
author durandn
Tue, 16 Feb 2016 15:46:00 +0100
changeset 2 d5c583f9a035
parent 0 71a42c20fc86
permissions -rw-r--r--
fixed commited oauth settings + edited tmpls and readme

"""
WSGI config for metaeducation 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.9/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application

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

application = get_wsgi_application()