Commit 4b39b4a3 by Iwasaki Yudai

Add development section to explain how to build binaries

1 parent 372ac4fb
Showing with 19 additions and 0 deletions
...@@ -82,6 +82,25 @@ When you want to create a jailed environment for each client, you can use Docker ...@@ -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 $ 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 # License
The MIT License The MIT License
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!