From f9baf9bc0cb1037ea321389ff92356ac4f2ff7fd Mon Sep 17 00:00:00 2001 From: Keith Hazelton Date: Wed, 26 May 2021 11:24:36 -0500 Subject: [PATCH] Create structurizr-SystemContext.puml --- file/structurizr-SystemContext.puml | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 file/structurizr-SystemContext.puml diff --git a/file/structurizr-SystemContext.puml b/file/structurizr-SystemContext.puml new file mode 100644 index 0000000..8b6a6fa --- /dev/null +++ b/file/structurizr-SystemContext.puml @@ -0,0 +1,31 @@ +@startuml +title Software System - System Context + +skinparam { + shadowing false + arrowFontSize 10 + defaultTextAlignment center + wrapWidth 200 + maxMessageSize 100 + PackageBorderColor<> #cccccc + PackageFontColor<> #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[Person]\n\nA user of my software system." <<1>> as 1 +rectangle "==Software System\n[Software System]\n\nMy software system." <<2>> as 2 + +1 .[#707070,thickness=2].> 2 : "Uses" +@enduml