You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.1 KiB
Plaintext
59 lines
2.1 KiB
Plaintext
!includeurl https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/release/1-0/C4_Context.puml
|
|
' uncomment the following line and comment the first to use locally
|
|
' !include C4_Context.puml
|
|
|
|
' Scope: A single software system.
|
|
' Primary elements: Containers within the software system in scope.
|
|
' Supporting elements: People and software systems directly connected to the containers.
|
|
' Intended audience: Technical people inside and outside of the software development team; including software architects, developers and operations/support staff.
|
|
|
|
' Colors
|
|
' ##################################
|
|
|
|
!define CONTAINER_BG_COLOR #438DD5
|
|
|
|
' Styling
|
|
' ##################################
|
|
|
|
skinparam rectangle<<container>> {
|
|
StereotypeFontColor ELEMENT_FONT_COLOR
|
|
FontColor ELEMENT_FONT_COLOR
|
|
BackgroundColor CONTAINER_BG_COLOR
|
|
BorderColor #3C7FC0
|
|
}
|
|
|
|
skinparam database<<container>> {
|
|
StereotypeFontColor ELEMENT_FONT_COLOR
|
|
FontColor ELEMENT_FONT_COLOR
|
|
BackgroundColor CONTAINER_BG_COLOR
|
|
BorderColor #3C7FC0
|
|
}
|
|
|
|
' Layout
|
|
' ##################################
|
|
|
|
!definelong LAYOUT_WITH_LEGEND
|
|
hide stereotype
|
|
legend right
|
|
|= |= Type |
|
|
|<PERSON_BG_COLOR> | person |
|
|
|<EXTERNAL_PERSON_BG_COLOR> | external person |
|
|
|<SYSTEM_BG_COLOR> | system |
|
|
|<EXTERNAL_SYSTEM_BG_COLOR> | external system |
|
|
|<CONTAINER_BG_COLOR> | container |
|
|
endlegend
|
|
!enddefinelong
|
|
|
|
' Elements
|
|
' ##################################
|
|
|
|
!define Container(e_alias, e_label, e_techn) rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//" <<container>> as e_alias
|
|
!define Container(e_alias, e_label, e_techn, e_descr) rectangle "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<container>> as e_alias
|
|
|
|
!define ContainerDb(e_alias, e_label, e_techn) database "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//" <<container>> as e_alias
|
|
!define ContainerDb(e_alias, e_label, e_techn, e_descr) database "==e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//\n\n e_descr" <<container>> as e_alias
|
|
|
|
' Boundaries
|
|
' ##################################
|
|
|
|
!define Container_Boundary(e_alias, e_label) Boundary(e_alias, e_label, "Container") |