Rearrange source.
[turniej.git] / src / core / wsgi.py
diff --git a/src/core/wsgi.py b/src/core/wsgi.py
new file mode 100644 (file)
index 0000000..b580220
--- /dev/null
@@ -0,0 +1,9 @@
+import os
+
+
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
+
+# This application object is used by the development server
+# as well as any WSGI server configured to use this file.
+from django.core.wsgi import get_wsgi_application
+application = get_wsgi_application()