Created
December 27, 2019 15:57
-
-
Save travis-g/35c453c7b4c6d0d81fc184759db3efc6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
rankdir=LR; | |
subgraph cluster_vault { | |
label = "Vault (Meta Storage Backend)"; | |
style=filled | |
color=lightgrey | |
node [style=filled,color=white] | |
"ipfs/ipfs-docs" [style=dashed color=normal] | |
"ipfs/ipfs-docs" -> "ipfs/ipfs-docs/readme" | |
"ipfs/ipfs-docs" -> "ipfs/ipfs-docs/about" | |
{ | |
rank=same | |
node [style=filled,color=white] | |
"ipfs/ipfs-docs/readme" | |
"ipfs/ipfs-docs/about" | |
} | |
} | |
subgraph cluster_ipfs { | |
label = "IPFS Merkle Forest" | |
node [style=filled] | |
"/ipfs/QmYwAPJzv5" -> "/ipfs/QmPZ9gcCEp" [label="./readme" style=dotted] | |
"/ipfs/QmYwAPJzv5" -> "/ipfs/QmZTR5bcpQ" [label="./about" style=dotted] | |
} | |
"ipfs/ipfs-docs" -> "/ipfs/QmYwAPJzv5" [label="Dynamic" style=dashed] | |
"ipfs/ipfs-docs/readme" -> "/ipfs/QmPZ9gcCEp" | |
"ipfs/ipfs-docs/about" -> "/ipfs/QmZTR5bcpQ" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment