From 01181721adca98ff9015ad8956a9e5cdc17d87d2 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 24 Aug 2017 11:02:14 -0400 Subject: [PATCH] readme: update install instruction (#100) --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 2efb234d..3f2a8c05 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,15 @@ and the state machine (the application). By using a socket protocol, we enable a consensus engine running in one process to manage an application state running in another. +# Install + +``` +go get github.com/tendermint/abci +cd $GOPATH/src/github.com/tendermint/abci +glide install +go install ./cmd/... +``` + For more information on ABCI, motivations, and tutorials, please visit [our blog post](https://tendermint.com/blog/abci-the-application-blockchain-interface), and the more detailed [application developer's guide](https://tendermint.com/docs/guides/app-development).