From d69e53608cb14014389e561b020932eea3fb8fc9 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 9 Mar 2013 11:43:33 +0000 Subject: [PATCH] add option to install local apps --- pandora/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora/settings.py b/pandora/settings.py index ca39eb5d3..deb96d4a8 100644 --- a/pandora/settings.py +++ b/pandora/settings.py @@ -210,7 +210,7 @@ DB_GIN_TRGM = False RELOADER_RUNNING = False #you can ignore things below this line #========================================================================= - +LOCAL_APPS = [] #load installation specific settings from local_settings.py try: from local_settings import * @@ -234,3 +234,4 @@ except NameError: except IOError: Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE) +INSTALLED_APPS = tuple(list(INSTALLED_APPS) + LOCAL_APPS)