diff options
Diffstat (limited to 'config/config.wsgi')
-rw-r--r-- | config/config.wsgi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config/config.wsgi b/config/config.wsgi new file mode 100644 index 0000000..ab5f23a --- /dev/null +++ b/config/config.wsgi @@ -0,0 +1,20 @@ +import os, sys, site +from os.path import dirname, abspath + +# Fix markdown.py (and potentially others) using stdout +sys.stdout = sys.stderr + +SERVER_ROOT = abspath(dirname(dirname(__file__)))+'/' +# Tell wsgi to add the Python site-packages to it's path. +site.addsitedir(SERVER_ROOT+'venv/lib/python2.7/site-packages') + +from django.core.handlers.wsgi import WSGIHandler +os.environ['DJANGO_SETTINGS_MODULE'] = 'config.settings.settings' +application = WSGIHandler() + +sys.path = [SERVER_ROOT,] + sys.path + +from django.conf import settings +sys.path.insert(0, os.path.join(settings.PROJ_ROOT, "app")) +sys.path.insert(0, os.path.join(settings.PROJ_ROOT, "app/lib")) +sys.path.insert(0, os.path.join(settings.PROJ_ROOT, "config")) |