Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 597 Bytes

File metadata and controls

30 lines (19 loc) · 597 Bytes

Refactoring's Sentry Log Server

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.

Getting started

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;