This commit is contained in:
jem 2022-02-03 13:00:01 +01:00
parent 718bc99d55
commit 386480cee6
3 changed files with 48 additions and 0 deletions

View file

@ -1,3 +1,4 @@
```plantuml
@startuml
autonumber
@ -59,3 +60,4 @@ ProvisionWorkplace -> Infrastructure_functions: installVirtualBoxGuestAdditions
ProvisionWorkplace -> Infrastructure_functions: configureNoSwappiness, ...
@enduml
```

20
doc/boundedContexts.md Normal file
View file

@ -0,0 +1,20 @@
```plantuml
@startuml
package "configuration" {
[TargetCommand]
}
package "desktop" {
[DesktopCommand]
}
package "server" {
[ServerCommand]
}
server ..> configuration
desktop ..> configuration
using ..> used
@enduml
```

26
doc/ddd.md Normal file
View file

@ -0,0 +1,26 @@
```plantuml
@startuml
'https://plantuml.com/class-diagram
package application {
class Application
}
package domain {
class Service
class Domain
}
Application ..> Service
Application ..> Domain
package infrastructure {
class Repository
class Provs
}
Service ..> Domain
Service ..> Service
Service ..> Repository
Service ..> Provs
@enduml
```