diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-02-17 12:55:07 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-02-17 12:55:07 +0100 | 
| commit | 5e47cbfcbeb090762547042d809016074bf1c679 (patch) | |
| tree | 5e80fbe23775e8bfe2986f9201c6e32005c2f7ec /example_project/settings.py | |
| parent | a37e0f6e2e116b63fbf2a4e6fd7f94b848f35040 (diff) | |
| download | Ishtar-5e47cbfcbeb090762547042d809016074bf1c679.tar.bz2 Ishtar-5e47cbfcbeb090762547042d809016074bf1c679.zip  | |
Fix cache for multiple instance of ishtar - Database changes for managing modules via profile
Diffstat (limited to 'example_project/settings.py')
| -rw-r--r-- | example_project/settings.py | 18 | 
1 files changed, 7 insertions, 11 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index e124198aa..4b91c554f 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -128,8 +128,14 @@ INSTALLED_APPS = [      'south',      'registration',      # 'geodjangofla', +    'ishtar_pdl',      'ishtar_common', -    'archaeological_operations',  # mandatory app to run ishtar +    'archaeological_files_pdl', +    'archaeological_files', +    'archaeological_operations', +    'archaeological_context_records', +    'archaeological_warehouse', +    'archaeological_finds',      # 'django_extensions',      # 'debug_toolbar',  ] @@ -214,16 +220,6 @@ except ImportError, e:  if 'test' in sys.argv:      SOUTH_TESTS_MIGRATE = False -for app in PRE_APPS: -    INSTALLED_APPS.insert(INSTALLED_APPS.index('ishtar_common'), app) - -if 'archaeological_files' in EXTRA_APPS: -    EXTRA_APPS.pop(EXTRA_APPS.index('archaeological_files')) -    INSTALLED_APPS.insert(INSTALLED_APPS.index('archaeological_operations'), -                          'archaeological_files') - -INSTALLED_APPS += EXTRA_APPS -  PROJECT_SLUG = locals().get('PROJECT_SLUG', 'default')  if LOGFILE:  | 
