All checks were successful
CI / Unit & Component Tests (pull_request) Successful in 3m3s
CI / OCR Service Tests (pull_request) Successful in 17s
CI / Backend Unit Tests (pull_request) Successful in 2m43s
CI / fail2ban Regex (pull_request) Successful in 41s
CI / Compose Bucket Idempotency (pull_request) Successful in 58s
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
1.0 KiB
Plaintext
19 lines
1.0 KiB
Plaintext
@startuml
|
|
!include <C4/C4_Context>
|
|
|
|
title System Context: Familienarchiv
|
|
|
|
Person(admin, "Administrator", "Manages users, triggers bulk imports, reviews and transcribes documents")
|
|
Person(member, "Family Member", "Access by administrator invite. Searches, browses, reads, and transcribes archived documents.")
|
|
|
|
System(familienarchiv, "Familienarchiv", "Web application for digitising, organising, and searching family documents")
|
|
System_Ext(mail, "Email Service", "SMTP server. Delivers notification emails (mentions, replies) and password-reset links.")
|
|
System_Ext(glitchtip, "GlitchTip", "Self-hosted error tracking (Sentry-compatible). Receives frontend and backend error events with stack traces.")
|
|
|
|
Rel(admin, familienarchiv, "Manages via browser", "HTTPS")
|
|
Rel(member, familienarchiv, "Searches, reads, and transcribes via browser", "HTTPS")
|
|
Rel(familienarchiv, mail, "Sends notification and password-reset emails (optional)", "SMTP")
|
|
Rel(familienarchiv, glitchtip, "Sends error events with errorId and stack trace", "HTTPS")
|
|
|
|
@enduml
|