From 24998df80110c7a797df6b6ee115ab6c75ff75ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= Date: Tue, 24 Feb 2015 13:36:19 +0000 Subject: [PATCH] rrs: Add wsgi file for serve with gunicorn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aníbal Limón --- rrs/wsgi.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 rrs/wsgi.py diff --git a/rrs/wsgi.py b/rrs/wsgi.py new file mode 100644 index 0000000..1d7e7b7 --- /dev/null +++ b/rrs/wsgi.py @@ -0,0 +1,6 @@ +import os + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application()