From d636cb34a3b13ea3e6b776e951e6276a94d968c6 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Sun, 24 May 2015 17:50:33 +0800 Subject: Update documentation and default settings to suit patchwork deployment model We've always allowed configuration without altering any of the version-controlled files. With the recent settings changes, we have an extra level of indirection with the dev/prod settings modules. Since we have to edit a config file anyway, this change moves the prod.py settings file to a template, which is then used directly by mange.py (and the wsgi application). Signed-off-by: Jeremy Kerr --- manage.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'manage.py') diff --git a/manage.py b/manage.py index 04eac77..fe6189e 100755 --- a/manage.py +++ b/manage.py @@ -3,7 +3,8 @@ import os import sys if __name__ == "__main__": - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "patchwork.settings.prod") + os.environ.setdefault("DJANGO_SETTINGS_MODULE", + "patchwork.settings.production") from django.core.management import execute_from_command_line -- cgit v1.2.3