diff --git a/helloworld/wsgi.py b/helloworld/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..e5ea93dd353e0c9db8da6d9191f8e1fc3cd8ce48 --- /dev/null +++ b/helloworld/wsgi.py @@ -0,0 +1,11 @@ +""" +WSGI config for helloworld project. + +It exposes the WSGI callable as a module-level variable named ``application``. +""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "helloworld.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application()