Skip to content

Commit

Permalink
Merge pull request #2328 from edx/dstgermain/devstack/settings
Browse files Browse the repository at this point in the history
Enable debug toolbar on devstack
  • Loading branch information
davestgermain committed Jan 27, 2014
2 parents 46c07cc + cc31695 commit abae00d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lms/envs/devstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
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

Expand Down Expand Up @@ -46,7 +48,8 @@
)

DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS': False
'INTERCEPT_REDIRECTS': False,
'SHOW_TOOLBAR_CALLBACK': lambda: True,
}

########################### PIPELINE #################################
Expand Down

0 comments on commit abae00d

Please sign in to comment.