X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/dcee135486c7e144626b0658cfe000f1303ab80a..81301c1c50d2dd24bc8f2b132e5947d95bf0ea9c:/wolnelektury/deploy/wolnelektury.wsgi diff --git a/wolnelektury/deploy/wolnelektury.wsgi b/wolnelektury/deploy/wolnelektury.wsgi new file mode 100644 index 000000000..4fead214d --- /dev/null +++ b/wolnelektury/deploy/wolnelektury.wsgi @@ -0,0 +1,22 @@ +#!/usr/bin/env python +from os.path import abspath, dirname, join +import sys + +# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use +# print statements for optional import exceptions. +sys.stdout = sys.stderr + +# Add apps and lib directories to PYTHONPATH +sys.path.insert(0, abspath(join(dirname(__file__), '../../apps'))) +sys.path.insert(0, abspath(join(dirname(__file__), '../../lib'))) + +# Emulate manage.py path hacking. +sys.path.insert(0, abspath(join(dirname(__file__), "../../"))) +sys.path.insert(0, abspath(join(dirname(__file__), "../"))) + +# Run Django +os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' + +from django.core.handlers.wsgi import WSGIHandler +application = WSGIHandler() +