generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3373430
commit 0ac26ea
Showing
2 changed files
with
42 additions
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |