From 7a6515183a31f6c8de14ae239bbf0e97ba608b10 Mon Sep 17 00:00:00 2001 From: j Date: Sat, 20 Feb 2016 05:37:02 +0000 Subject: [PATCH] add wsgi --- pandora/wsgi.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pandora/wsgi.py diff --git a/pandora/wsgi.py b/pandora/wsgi.py new file mode 100644 index 00000000..3ce60c34 --- /dev/null +++ b/pandora/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for fixme 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.9/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") + +application = get_wsgi_application()