Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 2.11 KB

README.md

File metadata and controls

50 lines (33 loc) · 2.11 KB

> Home > Views > C4 Models

< Prev | Next >


C4 Models

We are using C4 Model to build our models.

The C4 model is a way to help software development teams describe and communicate software architecture. In order to create these maps of your code, we first need a common set of abstractions to create a ubiquitous language that we can use to describe the static structure of a software system. The C4 model considers the static structures of a software system in terms of containers, components and code. And people use the software systems that we build.

Level 1. System Context

Level 1: A System Context diagram provides a starting point, showing how the software system in scope fits into the world around it.

C4 System Context Diagram

Level 2. Container

Level 2: A Container diagram zooms into the software system in scope, showing the high-level technical building blocks.

C4 System Container Diagram

Level 3. Component

Level 3: A Component diagram zooms into an individual container, showing the components inside it.

C4 System Component Diagram

Notifications components and interactions

C4 Component Notifications Diagram

Level 4. Code (skipped)

Level 4: A code (e.g. UML class) diagram can be used to zoom into an individual component, showing how that component is implemented.

(skipped)


We have used Str to build C4 models C4 model using a textual domain specific language (DSL). Structurizr DSL spotlight-c4


We have used plantuml to build our C4 diagrams, which can be found in assets, using following templates.


< Prev | Next >