Librarian in requirements.
[wolnelektury.git] / src / wolnelektury / wsgi.py
1 # -*- coding: utf-8 -*-
2 import os
3
4 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wolnelektury.settings")
5
6 # This application object is used by the development server
7 # as well as any WSGI server configured to use this file.
8 from django.core.wsgi import get_wsgi_application
9 application = get_wsgi_application()