Compare commits
2 commits
9f9723ea62
...
5803f0bd1e
| Author | SHA1 | Date | |
|---|---|---|---|
| 5803f0bd1e | |||
| d2240a2d23 |
5 changed files with 32 additions and 0 deletions
BIN
architecture-docs/2024-architecture.png
Normal file
BIN
architecture-docs/2024-architecture.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 72 KiB |
|
|
@ -0,0 +1,32 @@
|
|||
// usage: nix-shell -p graphviz --command dot -T png -o architecture.png architecture.dot
|
||||
|
||||
digraph FediversityArchitecture {
|
||||
graph[fontname="Liberation Sans"];
|
||||
node[shape=box, style="rounded", fontname="Liberation Sans"];
|
||||
|
||||
subgraph cluster_frontends {
|
||||
label="front-ends";
|
||||
|
||||
tofu[label="OpenTofu CLI"];
|
||||
panel[label="FediPanel"];
|
||||
protagio[label="NixPanel"];
|
||||
}
|
||||
|
||||
tofu -> core;
|
||||
panel -> core;
|
||||
protagio -> core;
|
||||
|
||||
core[label="fediversity-core"];
|
||||
|
||||
subgraph cluster_hypervisor {
|
||||
label="proxmox";
|
||||
|
||||
nextcloud;
|
||||
vaultwarden;
|
||||
dots[label="..."];
|
||||
}
|
||||
|
||||
core -> nextcloud;
|
||||
core -> vaultwarden;
|
||||
core -> dots;
|
||||
}
|
||||
BIN
architecture-docs/2025-05-architecture-replaced-by-mermaid.png
Normal file
BIN
architecture-docs/2025-05-architecture-replaced-by-mermaid.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 74 KiB |
Loading…
Add table
Reference in a new issue