Skip to content

Instantly share code, notes, and snippets.

@travis-g
Created December 27, 2019 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travis-g/35c453c7b4c6d0d81fc184759db3efc6 to your computer and use it in GitHub Desktop.
Save travis-g/35c453c7b4c6d0d81fc184759db3efc6 to your computer and use it in GitHub Desktop.
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"
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment