Skip to content

Instantly share code, notes, and snippets.

@wangkuiyi
Last active November 8, 2016 16:24
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 wangkuiyi/c4e0015211dd1b9bde2e20455a6cd38e to your computer and use it in GitHub Desktop.
Save wangkuiyi/c4e0015211dd1b9bde2e20455a6cd38e to your computer and use it in GitHub Desktop.
An example GraphViz image
digraph CI {
github [label="github.com"];
ngrok1 [label="ngrok tunnel 1"];
ngrok2 [label="ngrok tunnel 2"];
config1 [label="configuration 1"];
config2 [label="configuration 2"];
github -> ngrok1 -> config1;
github -> ngrok2 -> config2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment