1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 13:49:36 +01:00

feat: Sentry-kompatibles Error-Tracking (Bugsink) für Frontend und Backend

Frontend: @sentry/node mit instrument.ts, globale Error-Handler, 5xx-Interceptor.
Backend: sentry-spring-boot-starter-jakarta, Sentry.captureException im GlobalExceptionHandler.
Konfiguration über SENTRY_DSN Env-Variable, Bugsink via make bugsink startbar.
This commit is contained in:
Sebastian Frick 2026-02-23 22:40:19 +01:00
parent 5fe0dfc139
commit df1d1dfdd3
9 changed files with 818 additions and 6 deletions

View file

@ -18,6 +18,7 @@
"@effigenix/config": "workspace:*",
"@effigenix/types": "workspace:*",
"@effigenix/validation": "workspace:*",
"@sentry/node": "^10.39.0",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"react": "^18.2.0",
@ -34,8 +35,12 @@
"vitest": "^1.2.0"
},
"tsup": {
"entry": ["src/index.tsx"],
"format": ["esm"],
"entry": [
"src/index.tsx"
],
"format": [
"esm"
],
"dts": false,
"clean": true,
"sourcemap": true,