diff options
author | Özgür Kesim <oec@codeblau.de> | 2017-11-22 18:16:38 -0800 |
---|---|---|
committer | Özgür Kesim <oec@codeblau.de> | 2017-11-22 18:16:38 -0800 |
commit | 416a91aef8d838960f46513772f3e87d3ea13f5a (patch) | |
tree | 86407c1716d653f2131b073a5f62b78e24e502eb | |
parent | 57fbd7bd174a96bd8f5b14bb6a18b0ab6a42b8ee (diff) |
Installation added to README
-rw-r--r-- | README.md | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -4,5 +4,23 @@ A simple webservice that displays an editor for dpic- and dot-input and shows the SVG-output or error messages below it. Allows for sharing of links to the input. -You must install dpic from https://ece.uwaterloo.ca/~aplevich/dpic and graphviz -first before you can use playdot. +You must first install + - dpic from https://ece.uwaterloo.ca/~aplevich/dpic and + - graphviz from https://graphviz.org + +before you can use playdot properly. + +## Install + + % go get github.com/oec/playdot + % cd $GOPATH/src/github.com/oec/playdot + % go build + +To run the server on port 9999 without TLS: + + % ./playdot -l :9999 + 2017/11/22 18:13:13 handler for /dot/ registered + 2017/11/22 18:13:13 handler for /dpic/ registered + 2017/11/22 18:13:13 listening non-tls on :9999 + +See `./playdot -h` for further options. |