From 2261548172e1f69cfe7897a0b3dd310fcfd03bb1 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Tue, 25 Sep 2012 15:07:40 +0200 Subject: [PATCH] wsgi file --- wolnelektury/wsgi.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 wolnelektury/wsgi.py diff --git a/wolnelektury/wsgi.py b/wolnelektury/wsgi.py new file mode 100644 index 000000000..46ea2fd01 --- /dev/null +++ b/wolnelektury/wsgi.py @@ -0,0 +1,22 @@ +import os +import os.path +import sys + +ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +# Add apps and lib directories to PYTHONPATH +sys.path = [ + ROOT, + os.path.join(ROOT, 'wolnelektury'), + os.path.join(ROOT, 'apps'), + os.path.join(ROOT, 'lib'), + os.path.join(ROOT, 'lib/librarian'), +] + sys.path + + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "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() -- 2.20.1