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