meowlib/doc/general_deployment.puml

22 lines
487 B
Plaintext
Raw Normal View History

2022-08-29 15:40:29 +02:00
@startuml
cloud net as "Network"
component mapp as "Mobile Application"
component capp as "CLI Application"
component dapp as "Desktop Application"
component proxy1 as "Http Web Service Proxy"
component proxy2 as "Http Web Service Proxy"
component ws1 as "Company 1 Web Services" #LightGray
component ws2 as "Company 2 Web Client" #LightGray
component srv1 as "Server"
net -- srv1
net -- mapp
net -- capp
net -- dapp
net -- proxy1
net -- proxy2
ws1 -- proxy1
ws2 -- proxy2
ws2 ..> ws1