Masonite Debugbar development continues at masonitedev/debugbar as part of Masonite 5 (a new PyPI package name is coming soon). This repository covers
masonite-debugbar≤ 1.0.1, which will receive no further updates (including security fixes).
- 📖 Masonite documentation: https://docs.masonite.dev/official-packages/masonite-debugbar/
❤️ In memory of Joseph "Joe" Mancuso, creator of Masonite.
A Masonite Python Debugging Tool
First pip install:
$ pip install 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
