From ae639a6a6aea26b0648a0e2d2fd4bccd7a41c791 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Tue, 7 Apr 2015 22:20:54 +0100 Subject: settings: Split 'settings.py' into multiple files This will make testing/developing a little easier and prevent people deploying insecure instances. This also adds references to Django documentation in said files (for Django novices) and restructures the files to group them together logically. This allows us to remove the settings file used for tests. Signed-off-by: Stephen Finucane Signed-off-by: Jeremy Kerr --- apps/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/manage.py') diff --git a/apps/manage.py b/apps/manage.py index f9726f9..04eac77 100755 --- a/apps/manage.py +++ b/apps/manage.py @@ -3,7 +3,7 @@ import os import sys if __name__ == "__main__": - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings") + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "patchwork.settings.prod") from django.core.management import execute_from_command_line -- cgit v1.2.3