1 # -*- coding: utf-8 -*-
5 ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
7 # Add apps and lib directories to PYTHONPATH
9 os.path.join(ROOT, '../lib/librarian'),
13 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wolnelektury.settings")
15 # This application object is used by the development server
16 # as well as any WSGI server configured to use this file.
17 from django.core.wsgi import get_wsgi_application
18 application = get_wsgi_application()