summaryrefslogtreecommitdiff
path: root/chimere_example_project/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere_example_project/wsgi.py')
-rw-r--r--chimere_example_project/wsgi.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/chimere_example_project/wsgi.py b/chimere_example_project/wsgi.py
deleted file mode 100644
index 093cc8a..0000000
--- a/chimere_example_project/wsgi.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import os, sys
-
-MAIN_PATH = os.path.realpath(os.path.dirname(__file__)) + "/.."
-sys.path.append(MAIN_PATH)
-if not "DJANGO_SETTINGS_MODULE" in os.environ or \
- not os.environ['DJANGO_SETTINGS_MODULE']:
- # change with your project name
- os.environ['DJANGO_SETTINGS_MODULE'] = 'mychimere_project.settings'
-import django.core.handlers.wsgi
-application = django.core.handlers.wsgi.WSGIHandler()
-