From 49e115065bce53584239fa41af405cc92945833e Mon Sep 17 00:00:00 2001 From: Keith Hazelton Date: Wed, 26 May 2021 11:18:29 -0500 Subject: [PATCH] Create workspace.dsl --- file/workspace.dsl | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 file/workspace.dsl diff --git a/file/workspace.dsl b/file/workspace.dsl new file mode 100644 index 0000000..656296c --- /dev/null +++ b/file/workspace.dsl @@ -0,0 +1,29 @@ +workspace "Getting Started" "This is a model of my software system." { + + model { + user = person "User" "A user of my software system." + softwareSystem = softwareSystem "Software System" "My software system." + + user -> softwareSystem "Uses" + } + + views { + systemContext softwareSystem "SystemContext" "An example of a System Context diagram." { + include * + autoLayout + } + + styles { + element "Software System" { + background #1168bd + color #ffffff + } + element "Person" { + shape person + background #08427b + color #ffffff + } + } + } + +}