Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Block View Level 1 Diagram Enchanced #37

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 17 additions & 21 deletions docs/src/05_building_block_view.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ In the best case you will get away with examples or simple signatures.

****


[plantuml, format="png"]
----
@startuml
Expand All @@ -83,6 +84,7 @@ WIQ --> WikidataAPI
----



Motivation::

This is a basic introduction to the app, highlighting the external services it uses and how they work together.
Expand Down Expand Up @@ -177,28 +179,22 @@ Leave out normal, simple, boring or standardized parts of your system

****

[plantuml, format="png"]
----
@startuml
title Main App

' Define custom style for components
skinparam componentStyle uml2

' Define components as rectangles without default stereotypes
rectangle Frontend
rectangle "User Management" as UserManagement
rectangle "Question Generation" as QuestionGeneration
cloud "Wikidata API" as WikidataAPI
actor "User" as User
[plantuml, format=png]
....
actor user as "User browser"
frame WIQ {
node Frontend
node UserManagement
node QuestionGeneration
}
cloud Wikidata as "Wikidata"

user -- Frontend
Frontend -- UserManagement
Frontend -- QuestionGeneration
QuestionGeneration -- Wikidata
....

' Define connections
User --> Frontend
Frontend --> UserManagement
Frontend --> QuestionGeneration
QuestionGeneration --> WikidataAPI
@enduml
----


Motivation::
Expand Down