Sentry is a service that helps you monitor and fix crashes in realtime. The server is in Python, but it contains a full API for sending events from any language, in any application.
Set the environments variables
mv .env.example .env
Generate Sentry's secret key
docker compose run --rm sentry_web config generate-secret-key;
Replace SENTRY_SECRET_KEY
in .env
file and run the sentry migrations.
docker compose run --rm sentry_web upgrade;
Run all containers
docker compose up -d;