From 4b39b4a3908442472b628a8878ee179123a22cb4 Mon Sep 17 00:00:00 2001 From: Iwasaki Yudai Date: Thu, 20 Aug 2015 17:21:05 +0900 Subject: [PATCH] Add development section to explain how to build binaries --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index c29d3ba..7bff927 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,25 @@ When you want to create a jailed environment for each client, you can use Docker $ gotty -w docker run -it --rm busybox ``` +## Development + +You can build a binary yourself using following commands. Windows is not supported now. + +```sh +# Install tools +go get github.com/jteeuwen/go-bindata/... +go get github.com/tools/godep + +# Checkout hterm +git submodule sync && git submodule update --init --recursive + +# Restore libraries in Godeps +godep restore + +# Build +make +``` + # License The MIT License