Skip to content
This repository has been archived by the owner on Dec 21, 2022. It is now read-only.

Latest commit

 

History

History
31 lines (18 loc) · 785 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 785 Bytes

django-stackoverflow-trace

A custom Django technical error template that puts a related stackoverflow search link under the exception message.

Installation

$ (sudo) pip install django_stackoverflow_trace

Setting it up

Add the custom middleware to your MIDDLEWARE_CLASSES in the settings.py.

if DEBUG: 
	MIDDLEWARE_CLASSES += ('django_stackoverflow_trace.DjangoStackoverTraceMiddleware', )

Next time you hit an error in your app, you will see an external link to a custom google search.

Using google search instead of stackoverflow

Add this into your settings.py

DJANGO_STACKOVERFLOW_TRACE_SEARCH_SITE = "googlesearch"