2016-01-20 17:51:41 +01:00
|
|
|
"""
|
2016-01-20 23:55:56 +01:00
|
|
|
WSGI config for VCPBayern_eLearning project.
|
2016-01-20 17:51:41 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-01-20 23:55:56 +01:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "VCPBayern_eLearning.settings")
|
2016-01-20 17:51:41 +01:00
|
|
|
|
|
|
|
application = get_wsgi_application()
|