doc: adding architecture bdd diagram

This commit is contained in:
adrien balleyguier
2026-04-02 10:53:06 +02:00
parent ff98ca5a15
commit 9ce9228fe1
2 changed files with 43 additions and 0 deletions

2
doc_resources/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.png
*.svg

View File

@@ -0,0 +1,41 @@
@startuml
skinparam linestyle ortho
left to right direction
rectangle "thingy 1" as t1
rectangle "thingy 2" as t2
rectangle "thingy ..." as t_plus
rectangle "gateway" as gw
rectangle "database" as db
rectangle "data validation" as valid
rectangle "display" as display
rectangle "forecasting" as forecasting
rectangle "teams" as teams
circle "thingy interface" as t1_gw_int
circle "thingy interface" as t2_gw_int
circle "thingy interface" as t_plus_gw_int
circle "db set" as db_api_int
circle "db API" as db_get_int
circle "teams API" as teams_int
t1 --( t1_gw_int
t1_gw_int -- gw
t2 --( t2_gw_int
t2_gw_int -- gw
t_plus --( t_plus_gw_int
t_plus_gw_int -- gw
gw --( db_api_int
db_api_int -- db
db -- db_get_int
db_get_int )-r- display
db_get_int )-l- valid
db_get_int )-- forecasting
forecasting --( teams_int
teams_int -- teams
@enduml