Skip to content

Commit

Permalink
docs: changed colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Toto-hitori committed Apr 27, 2024
1 parent 3373430 commit 0ac26ea
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 36 deletions.
36 changes: 0 additions & 36 deletions docs/diagrams/deployment/DeploymentDiagram.puml

This file was deleted.

42 changes: 42 additions & 0 deletions docs/diagrams/deployment/DeploymentDiagramLevel1.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
@startuml

title WIQ Deployment View

legend right
|Color| Type |
|<#darkseagreen>| WIQ Server |
|<#darkolivegreen>| External Service |
end legend

node "Server Hosting WIQ" #darkseagreen {
node "KIWIQ Proxy"
node "KIWIQ WebApp Server" {
component "KIWIQ React Application"
}
node "KIWIQ API"{
component "KIWIQ_API.jar"
}
node "PostgreSQL Docker" {
database "KIWIQ Database"
}
node "Question generator" {
component "Question_Generator.jar"
}
node "Grafana"
node "Prometheus"
}
node "User Computer" #darkolivegreen{
frame "Web Client"
}
node "WikiData Server" #darkolivegreen {
frame "WikiData REST API"
}
"Web Client" ..> "KIWIQ Proxy" : "HTTPS"
"KIWIQ Proxy" ..> "KIWIQ React Application"
"KIWIQ React Application" ..> "KIWIQ_API.jar" : "HTTPS"
"KIWIQ_API.jar" ..> "KIWIQ Database" : "JPA"
"Question_Generator.jar" ..> "WikiData REST API" : "HTTPS, SPARQL"
"Question_Generator.jar" ..> "KIWIQ Database" : "JPA"
"Prometheus" ..> "KIWIQ_API.jar" : "Actuator"
"Grafana" ..> "Prometheus"
@enduml

0 comments on commit 0ac26ea

Please sign in to comment.