A Masonite Python Debugging Tool
First pip install:
$ pip install masonite-framework-debugbar
Note: the import name remains
debugbar. Versions up to 1.0.1 were published asmasonite-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
