mamweb/mamweb/wsgi.py
2014-11-05 15:13:59 +01:00

14 lines
387 B
Python

"""
WSGI config for mamweb 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", "mamweb.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()