-
Notifications
You must be signed in to change notification settings - Fork 14
/
concept_map.puml
77 lines (57 loc) · 1.56 KB
/
concept_map.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@startuml metrics_concept_map
skinparam DefaultTextAlignment left
skinparam database {
borderColor #292618
backgroundColor #fed100
}
skinparam cloud {
borderColor #002366
backgroundColor #007FFF
fontColor white
}
skinparam rectangle {
borderColor #182b27
backgroundColor #20ce9a
roundCorner 10
}
skinparam ArrowColor #4f4f56
node Jenkins
node "GitHub Actions" as GA
node Buildkite
node Sentry
rectangle "CI integrations" as CI
together {
node Firebase {
cloud Hosting
database Firestore
cloud Authentication
cloud Analytics
cloud #20ce9a "<color:black>Dart Cloud Functions</color>" as DartCloudFunctions
}
rectangle Core
}
rectangle "Flutter Web" as Web
rectangle "Deploy CLI" as CLI
Jenkins -[hidden]right-> GA
GA -[hidden]right-> Buildkite
Analytics -[hidden]left-> Hosting
Analytics -[hidden]right-> Firestore
Jenkins -down-> CI : data
GA -down-> CI : data
Buildkite -down-> CI : data
CI -down-> Firestore : sync data
CI -down-> Authentication : authenticates
Hosting -[hidden]left-> Authentication
Hosting -[hidden]right-> Firestore
Firestore -[hidden]right-> Authentication
Web -up-> Firestore : reads metrics and \l stores app config
Web -up-> Authentication : authenticates
Web -up-> Hosting : deployed on
Web .up.> Analytics : reports analytics \l (optional)
Web .down.> Sentry : logging \l (optional)
CLI -up-> Core : uses
DartCloudFunctions -right-> Core : uses
DartCloudFunctions -[hidden]left-> Authentication : uses
Web -right-> Core : uses
CI -right-> Core : uses
@enduml