Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 704 Bytes

File metadata and controls

35 lines (21 loc) · 704 Bytes

Masonite Debugbar

A Masonite Python Debugging Tool

Screen Shot 2022-01-17 at 6 53 40 PM

Install

First pip install:

$ pip install masonite-framework-debugbar

Note: the import name remains debugbar. Versions up to 1.0.1 were published as masonite-debugbar.

Then add the debugbar provider to your providers list LAST (as the last provider in the list):

from debugbar.providers import DebugProvider
PROVIDERS = [
    # ..
    DebugProvider,

]

Lastly, publish the provider:

$ python craft package:publish debugbar