We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc454f commit 332ef01Copy full SHA for 332ef01
website/docs/miscellaneous/architecture-overview.md
@@ -4,7 +4,27 @@ sidebar_position: 1
4
5
# Architecture overview
6
7
-
+```mermaid
8
+graph TD
9
+ A[Microsites server-side] --> D[OC Registry]
10
+ B[Microsites client-side] --> D
11
+ C[OC CLI] --> D
12
+ E[OC Components creators/owners] --> C
13
+
14
+ D --> F[OC Library]
15
+ D --> G[OC Runtime agents]
16
17
+ F --> H[CDN]
18
+ H --> G
19
20
+ style A fill:#87CEEB
21
+ style B fill:#87CEEB
22
+ style C fill:#87CEEB
23
+ style D fill:#87CEEB
24
+ style F fill:#F0E68C
25
+ style G fill:#87CEEB
26
+ style H fill:#D3D3D3
27
+```
28
29
OpenComponents' heart is a REST API. It is used for consuming and publishing components.
30
0 commit comments