Skip to content

Commit

Permalink
Create workspace.dsl
Browse files Browse the repository at this point in the history
  • Loading branch information
khazelton authored May 26, 2021
1 parent 8b5c7f0 commit 49e1150
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions file/workspace.dsl
Original file line number Diff line number Diff line change
@@ -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
}
}
}

}

0 comments on commit 49e1150

Please sign in to comment.