forked from 0x2620/pandora
add option to install local apps
This commit is contained in:
parent
e651aa6992
commit
d69e53608c
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue