Browse Source

Allow to enable extra apps in settings

fix #52
Jocelyn Delande 9 years ago
parent
commit
9768806540
2 changed files with 4 additions and 0 deletions
  1. 1 0
      README.md
  2. 3 0
      coin/settings.py

+ 1 - 0
README.md

@@ -250,6 +250,7 @@ Settings
 
 
 List of available settings in your `settings_local.py` file.
 List of available settings in your `settings_local.py` file.
 
 
+- `EXTRA_INSTALLED_APPS`: See *Customizing app list*
 - `MEMBER_MEMBERSHIP_INFO_URL`: Link to a page with information on how to become a member or pay the membership fee
 - `MEMBER_MEMBERSHIP_INFO_URL`: Link to a page with information on how to become a member or pay the membership fee
 
 
 More information
 More information

+ 3 - 0
coin/settings.py

@@ -167,6 +167,8 @@ INSTALLED_APPS = (
     'simple_dsl'
     'simple_dsl'
 )
 )
 
 
+EXTRA_INSTALLED_APPS = tuple()
+
 # A sample logging configuration. The only tangible logging
 # A sample logging configuration. The only tangible logging
 # performed by this configuration is to send an email to
 # performed by this configuration is to send an email to
 # the site admins on every HTTP 500 error when DEBUG=False.
 # the site admins on every HTTP 500 error when DEBUG=False.
@@ -254,3 +256,4 @@ except ImportError:
     pass
     pass
 
 
 TEMPLATE_DIRS = EXTRA_TEMPLATE_DIRS + TEMPLATE_DIRS
 TEMPLATE_DIRS = EXTRA_TEMPLATE_DIRS + TEMPLATE_DIRS
+INSTALLED_APPS = INSTALLED_APPS + EXTRA_INSTALLED_APPS