diff options
Diffstat (limited to 'bitbake/lib/toaster/toastermain')
-rw-r--r-- | bitbake/lib/toaster/toastermain/settings.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py index 2ce10c4747..97f2ff7cab 100644 --- a/bitbake/lib/toaster/toastermain/settings.py +++ b/bitbake/lib/toaster/toastermain/settings.py | |||
@@ -243,6 +243,15 @@ INSTALLED_APPS = ( | |||
243 | 'bldcontrol', | 243 | 'bldcontrol', |
244 | ) | 244 | ) |
245 | 245 | ||
246 | # We automatically detect and install applications here if | ||
247 | # they have a 'models.py' or 'views.py' file | ||
248 | import os | ||
249 | currentdir = os.path.dirname(__file__) | ||
250 | for t in os.walk(os.path.dirname(currentdir)): | ||
251 | modulename = os.path.basename(t[0]) | ||
252 | if ("views.py" in t[2] or "models.py" in t[2]) and not modulename in INSTALLED_APPS: | ||
253 | INSTALLED_APPS.append(modulename) | ||
254 | |||
246 | # A sample logging configuration. The only tangible logging | 255 | # A sample logging configuration. The only tangible logging |
247 | # performed by this configuration is to send an email to | 256 | # performed by this configuration is to send an email to |
248 | # the site admins on every HTTP 500 error when DEBUG=False. | 257 | # the site admins on every HTTP 500 error when DEBUG=False. |