add doc
This commit is contained in:
parent
718bc99d55
commit
386480cee6
3 changed files with 48 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
```plantuml
|
||||||
@startuml
|
@startuml
|
||||||
|
|
||||||
autonumber
|
autonumber
|
||||||
|
@ -59,3 +60,4 @@ ProvisionWorkplace -> Infrastructure_functions: installVirtualBoxGuestAdditions
|
||||||
ProvisionWorkplace -> Infrastructure_functions: configureNoSwappiness, ...
|
ProvisionWorkplace -> Infrastructure_functions: configureNoSwappiness, ...
|
||||||
|
|
||||||
@enduml
|
@enduml
|
||||||
|
```
|
20
doc/boundedContexts.md
Normal file
20
doc/boundedContexts.md
Normal 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
26
doc/ddd.md
Normal 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
|
||||||
|
```
|
Loading…
Reference in a new issue