We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 740cc86 commit 2f2acb9Copy full SHA for 2f2acb9
README.md
@@ -4,14 +4,25 @@ otunnel is a simple safe tunnel for peer-to-peer
4
5
## Build
6
7
-There are many method to build otunnel:
+simple build (RECOMMENDED):
8
9
```
10
+$ ./build-by-docker.sh
11
+```
12
+
13
+others:
14
15
16
+$ go get -v github.com/ooclab/otunnel
17
+$ export GOPATH=${GOPATH:-~/go}
18
+$ cd $GOPATH/src/github.com/ooclab/otunnel
19
20
+$ # use any of following commands to build otunnel
21
22
$ make # normal build
23
$ make static # build a static program
24
$ go build -v # the go build
-$ gox # cross build
-$ ./build-by-docker.sh # use docker to run build
25
+$ gox # simple cross build, you should install gox first!
26
27
28
## Usage
0 commit comments