46ea2fd01f46037e40fb89d66d09d712e3916109
[wolnelektury.git] / wolnelektury / wsgi.py
1 import os
2 import os.path
3 import sys
4
5 ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
6
7 # Add apps and lib directories to PYTHONPATH
8 sys.path = [
9     ROOT,
10     os.path.join(ROOT, 'wolnelektury'),
11     os.path.join(ROOT, 'apps'),
12     os.path.join(ROOT, 'lib'),
13     os.path.join(ROOT, 'lib/librarian'),
14 ] + sys.path
15
16
17 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
18
19 # This application object is used by the development server
20 # as well as any WSGI server configured to use this file.
21 from django.core.wsgi import get_wsgi_application
22 application = get_wsgi_application()