-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable debug toolbar #1018
Comments
My local conf looks like this: if DEBUG:
INTERNAL_IPS = ('127.0.0.1', '0.0.0.0', '192.168.50.101', '10.0.2.15')
MIDDLEWARE_CLASSES += (
'debug_toolbar.middleware.DebugToolbarMiddleware',
)
INSTALLED_APPS += (
'debug_toolbar',
) |
Besides this we should add django-debug-toolbar to requirements |
After some usage we realised that the DDT is a bit slow so better to disable by default and provide commented out settings - so it's easy to enable. |
Test planGIVEN the Vagrant environment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Django debug toolbar is really useful. We should enable usage by installing the app and document how to enable it while developing.
The text was updated successfully, but these errors were encountered: