From 10520905180387d0c51eb32907e53b79f4030190 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 14 Oct 2013 22:46:30 +0200 Subject: Update the example app with a modern project template. --- example/wsgi.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 example/wsgi.py (limited to 'example/wsgi.py') diff --git a/example/wsgi.py b/example/wsgi.py new file mode 100644 index 0000000..f87faba --- /dev/null +++ b/example/wsgi.py @@ -0,0 +1,7 @@ +"""WSGI config for example project.""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "example.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application() -- cgit v1.2.3