aboutsummaryrefslogtreecommitdiffstats
path: root/django_skaschool/wsgi.py
blob: bda56d19a9c1ec5a07e2c40f2f28dd2852af04fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
WSGI config for django_skaschool 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.6/howto/deployment/wsgi/
"""

import os

#os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_skaschool.settings")
# use settings_production
os.environ["DJANGO_SETTINGS_MODULE"] = "django_skaschool.settings_production"

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()