src/hdalab/wsgi.py
changeset 345 7bc38c7d6cf9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hdalab/wsgi.py	Sat Nov 01 17:42:33 2014 +0100
@@ -0,0 +1,14 @@
+"""
+WSGI config for mysite 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", "hdalab.settings")
+
+from django.core.wsgi import get_wsgi_application
+application = get_wsgi_application()