Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
Especificado lista de panels da debug_toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno committed Sep 3, 2018
1 parent 870cfc3 commit f7fe5bf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion settings.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,20 @@ BLUEPRINTS = [
DEBUG_TOOLBAR_ENABLED = false

[development]
TEMPLATES_AUTO_RELOAD = true
DEBUG = true
DEBUG_TOOLBAR_ENABLED = true
DEBUG_TB_INTERCEPT_REDIRECTS = false
DEBUG_TB_PROFILER_ENABLED = true
DEBUG_TB_TEMPLATE_EDITOR_ENABLED = true
TEMPLATES_AUTO_RELOAD = true
DEBUG_TB_PANELS = [
"flask_debugtoolbar.panels.versions.VersionDebugPanel",
"flask_debugtoolbar.panels.timer.TimerDebugPanel",
"flask_debugtoolbar.panels.headers.HeaderDebugPanel",
"flask_debugtoolbar.panels.request_vars.RequestVarsDebugPanel",
"flask_debugtoolbar.panels.template.TemplateDebugPanel",
"flask_debugtoolbar.panels.route_list.RouteListDebugPanel",
"flask_debugtoolbar.panels.logger.LoggingPanel",
"flask_debugtoolbar.panels.profiler.ProfilerDebugPanel",
"flask_debugtoolbar.panels.config_vars.ConfigVarsDebugPanel"
]

0 comments on commit f7fe5bf

Please sign in to comment.