X-Git-Url: https://git.mdrn.pl/django-migdal.git/blobdiff_plain/263bed72cd989b0ae9ba4a19825e3c0109a66407..53ed325ce2b47cc5bd64ab76e4a07fa8737bfd52:/example_project/core/wsgi.py diff --git a/example_project/core/wsgi.py b/example_project/core/wsgi.py new file mode 100644 index 0000000..f4b141d --- /dev/null +++ b/example_project/core/wsgi.py @@ -0,0 +1,14 @@ +""" +WSGI config for core project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ +""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application()