Django debug toolbar in production mode while keeping safe yourself

In my case, the application is an API built over Django Rest Framework and it uses a handful of custom permissions and some other whistles with a bug that only was happening in production so it was a bit difficult to trace what the heck was going on there because of the non-debug-insight.

Lots of people use django-debug-toolbar for development.
Of course, enabling debug in production is a no-no rule, but one thing are best practices and another thing is, “sometimes”, reality.

Long story short:
You can enable Django debug toolbar in production on demand just using one of its features and a simple browser extension. This is how.

This is my django.settings config for debug toolbar:

DEBUG_TOOLBAR_CONFIG = {
# Toolbar options
"SHOW_TOOLBAR_CALLBACK": "mymodule.utils.show_debug_toolbar",
"SHOW_COLLAPSED": True,
"SQL_WARNING_THRESHOLD": 70
}

Then in your file mymodule.utils.py:

from main import settingsdef show_debug_toolbar(request):
if "HTTP_MYAPPKEY" in request.META:
return request.META["HTTP_MYAPPKEY"] == settings.SECRET_KEY
return settings.DEBUG

And finally, find an extension for your browser able to inject an Http header in your browser requests. I am using “Modify Header Value for Chrome”, but up to you, there are some of them out there.

To see it in action you only need to go to the extension, setup your application url, the header name and the value of your settings.SECRET_KEY:


Take in care of the subtle detail:
In the show_debug_toolbar function the header is named HTTP_MYAPPKEY while in the browser extension it is set as MYAPPKEY.
This is because how Django handles the headers received in the request adding them a leading “HTTP_”, uppercasing them and replacing underscores and dashes

Now try your self and in under 5 minutes you will be a happy owner of a production debuggable application :-)

Important note:
This should be only used under HTTPS for obvious reasons; you don’t want anyone sniffing the wire or just transparent proxying your connection and see your APPKEY in clear text, although you can change the values for whatever you wish.

Hope this is useful for at least one person because it took more time writing this post than fixing the issue :-P

1 comment:

  1. Your blog post on using Django Debug Toolbar in production mode was incredibly informative! As a fellow developer, I truly appreciate the detailed guide you provided. Debugging in production can be a challenging task, but your step-by-step instructions make the process much more manageable.

    On a separate note, if any readers happen to be looking to sell their Honda for cash, they might find your blog post helpful in optimizing their Django applications before parting ways with their car. It's all about making smart decisions both in coding and in real-life!

    Thank you for sharing your expertise, and I'm looking forward to reading more of your insightful posts in the future. Keep up the excellent work!

    ReplyDelete

Know us

Contact us

Name

Email *

Message *