From b65610c6f82bb0ce7e2a41ff777e384dac88449e Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Thu, 2 Oct 2014 14:36:42 -0300 Subject: [PATCH] Added default value for COLAB_SETTINGS on wsgi.py --- colab/wsgi.py | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) diff --git a/colab/wsgi.py b/colab/wsgi.py index 02679ab..dd027b4 100644 --- a/colab/wsgi.py +++ b/colab/wsgi.py @@ -9,6 +9,7 @@ https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/ import os os.environ.setdefault("DJANGO_SETTINGS_MODULE", "colab.settings") +os.environ.setdefault("COLAB_SETTINGS", "/etc/colab/settings.yaml") from django.core.wsgi import get_wsgi_application application = get_wsgi_application() -- libgit2 0.21.2