Commit abae00dc by davestgermain

Merge pull request #2328 from edx/dstgermain/devstack/settings

Enable debug toolbar on devstack
parents 46c07ccc cc316957
......@@ -7,7 +7,9 @@ from .aws import * # pylint: disable=wildcard-import, unused-wildcard-import
DEBUG = True
USE_I18N = True
TEMPLATE_DEBUG = True
LANGUAGES = (
('eo', 'Esperanto'),
)
# By default don't use a worker, execute tasks as if they were local functions
CELERY_ALWAYS_EAGER = True
......@@ -46,7 +48,8 @@ DEBUG_TOOLBAR_PANELS = (
)
DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS': False
'INTERCEPT_REDIRECTS': False,
'SHOW_TOOLBAR_CALLBACK': lambda: True,
}
########################### PIPELINE #################################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment