Skip to content

Instantly share code, notes, and snippets.

@afomi
Last active August 29, 2015 14:11
Show Gist options
  • Save afomi/d08b046ecbb9dfbca546 to your computer and use it in GitHub Desktop.
Save afomi/d08b046ecbb9dfbca546 to your computer and use it in GitHub Desktop.
Tahi Environment
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
graph [compound=true];
bugsnag -> "pivotal tracker" [label="processing user feedback and data", ltail="cluster3"];
master -> "feature branch"
"pivotal tracker" -> "feature branch"
"feature branch" -> master
master -> release [label="git branch release-branch"];
subgraph cluster0 {
label="environments";
staging
demo
currents
}
subgraph cluster3 {
label="feedback";
bugsnag
"feedback email"
"segment.io"
}
subgraph cluster4 {
label="product vision";
"great ideas"
}
"great ideas" -> "pivotal tracker" [ltail="cluster3"]
release -> demo [label="git push", lhead=cluster0];
demo -> bugsnag [ltail=cluster0, lhead=cluster3];
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment