Rearrange source to src dir.
[redakcja.git] / src / redakcja / wsgi.py
1 import os
2
3
4 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "redakcja.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()