added faafo example
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
digraph {
|
||||
API -> Database [color=green];
|
||||
API -> Database [color=orange];
|
||||
Database -> API [color=red];
|
||||
API -> Webinterface [color=red];
|
||||
Producer -> API [color=orange];
|
||||
Producer -> API [color=green];
|
||||
Producer -> "Queue Service" [color=orange];
|
||||
"Queue Service" -> Worker [color=orange];
|
||||
Worker -> "Image File" [color=blue];
|
||||
Worker -> "Queue Service" [color=green];
|
||||
"Queue Service" -> Producer [color=green];
|
||||
"Image File" -> "Storage Backend" [color=blue];
|
||||
"Storage Backend" -> Webinterface [color=red];
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 35 KiB |
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
dot -T png -o diagram.png diagram.dot
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 202 KiB |
Reference in New Issue
Block a user