X-Git-Url: https://git.mdrn.pl/turniej.git/blobdiff_plain/479cb324a4cbc258f3f6de8de1025e7dccb1da2d..80b74642b6a6a375462d6eae7efb203981a412d6:/src/core/wsgi.py diff --git a/src/core/wsgi.py b/src/core/wsgi.py new file mode 100644 index 0000000..b580220 --- /dev/null +++ b/src/core/wsgi.py @@ -0,0 +1,9 @@ +import os + + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings") + +# This application object is used by the development server +# as well as any WSGI server configured to use this file. +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application()