-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create structurizr-SystemContext.puml
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| @startuml | ||
| title Software System - System Context | ||
|
|
||
| skinparam { | ||
| shadowing false | ||
| arrowFontSize 10 | ||
| defaultTextAlignment center | ||
| wrapWidth 200 | ||
| maxMessageSize 100 | ||
| PackageBorderColor<<group>> #cccccc | ||
| PackageFontColor<<group>> #cccccc | ||
| } | ||
| hide stereotype | ||
| top to bottom direction | ||
|
|
||
| skinparam rectangle<<2>> { | ||
| BackgroundColor #1168bd | ||
| FontColor #ffffff | ||
| BorderColor #0b4884 | ||
| } | ||
| skinparam person<<1>> { | ||
| BackgroundColor #08427b | ||
| FontColor #ffffff | ||
| BorderColor #052e56 | ||
| } | ||
|
|
||
| person "==User\n<size:10>[Person]</size>\n\nA user of my software system." <<1>> as 1 | ||
| rectangle "==Software System\n<size:10>[Software System]</size>\n\nMy software system." <<2>> as 2 | ||
|
|
||
| 1 .[#707070,thickness=2].> 2 : "Uses" | ||
| @enduml |