62743d6d07860f02d0feeeafffcabedb1a793853
[redakcja.git] / redakcja / 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, 'apps'),
11     os.path.join(ROOT, 'lib'),
12     os.path.join(ROOT, 'lib/librarian'),
13 ] + sys.path
14
15
16 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "redakcja.settings")
17
18 # This application object is used by the development server
19 # as well as any WSGI server configured to use this file.
20 from django.core.wsgi import get_wsgi_application
21 application = get_wsgi_application()