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
|
RELOADER_RUNNING = False
|
||||||
#you can ignore things below this line
|
#you can ignore things below this line
|
||||||
#=========================================================================
|
#=========================================================================
|
||||||
|
LOCAL_APPS = []
|
||||||
#load installation specific settings from local_settings.py
|
#load installation specific settings from local_settings.py
|
||||||
try:
|
try:
|
||||||
from local_settings import *
|
from local_settings import *
|
||||||
|
@ -234,3 +234,4 @@ except NameError:
|
||||||
except IOError:
|
except IOError:
|
||||||
Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
|
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