Skip to content

rmyers/appengine-debugtoolbar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Appengine Debug Toolbar

This is a fork of the awesome django debug toolbar:

https://github.com/django-debug-toolbar/django-debug-toolbar

It is designed to work with webapp and jinja the default wsgi 'framework' for Appengine.

Example:

from google.appengine.ext.webapp import WSGIApplication
from google.appengine.ext.webapp.util import run_wsgi_app
from appengine_debugtoolbar.middleware import DebugToolbar

urls = [...]

config = {
   'INTERCEPT_REDIRECTS': True,
   'JINJA_TEMPLATEDIR': 'templates',
}

app = DebugToolbar(WSGIApplication(urls, debug=True), config)

def main():
    run_wsgi_app(app)

About

Debug toolbar for simple wsgi apps on Appengine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published