Fundraising in PDF.
[wolnelektury.git] / src / wolnelektury / wsgi.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 import os
5
6 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wolnelektury.settings")
7
8 # This application object is used by the development server
9 # as well as any WSGI server configured to use this file.
10 from django.core.wsgi import get_wsgi_application
11 application = get_wsgi_application()