Sentry sdk implementation for Masonite.
pip install masonite-sentryAdd SentryProvider to your project in config/providers.py:
# config/providers.py
# ...
from sentry import SentryProvider
# ...
PROVIDERS = [
# ...
# Third Party Providers
SentryProvider,
# ...
]Then you can publish the package resources (if needed) by doing:
python craft package:publish sentrySetup environment variables in your project's .env file:
SENTRY_DSN=
SENTRY_SAMPLE_RATE=1.0Well that's it, you are done, congrats.
Note: Sentry captures no any exceptions if you are on debug mode.
Please read the Contributing Documentation here.
Masonite Sentry is open-sourced software licensed under the MIT license.
