Django - Add Debug Toolbar
Steps to add Debug Toolbar to a Django project
This page explains how to add Django Debug Toolbar to an existing Django project. For newcomers, the Django Debug Toolbar is a configurable set of panels that bumps various information about the current request/response when clicked.
How to install
Step #1 - Add
django-debug-toolbar
to project dependencies or install via PIP
Or install via PIP
Step #2 - Update project routes
Step #3 - Update Settings
Step #4 - Execute the migration
Step #5 - Start the app (the debug toolbar should be visible)
At this point, the Debug Toolbar should be visible on the right side for all pages.
Resources
Django Debug Toolbar - official docs
Django Debug Toolbar - PyPi page
Troubleshooting
Django Debug Toolbar not showing up - StackOverflow article
Cannot get django-debug-toolbar to appear - StackOverflow article
Last updated
Was this helpful?