Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #30 from EventideSystems/1-project-setup-c4-system…
Browse files Browse the repository at this point in the history
…-context

1 very basic system context
  • Loading branch information
ferrisoxide authored May 1, 2024
2 parents 5318961 + 01de5dd commit d459868
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/architecture/system_context.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
### System Context

```mermaid
C4Context
title System Context diagram for Obsekio
System_Ext(email_system, "E-Mail System", "Transactional email system")
Enterprise_Boundary(b0, "Application Boundary") {
Person(UserA, "User", "A checklist user")
Person(UserB, "Editor", "A checklist editor")
System(SystemA, "Application Server", "Allows users to access and manage checklists.")
SystemDb(SystemB, "Checklist Database", "PostgreSQL database containing checklist data")
BiRel(UserA, SystemA, "Uses")
BiRel(UserB, SystemA, "Uses")
BiRel(SystemA, SystemB, "Uses")
Rel(SystemA, email_system, "Sends e-mails to")
}
```

0 comments on commit d459868

Please sign in to comment.