File tree 6 files changed +33
-97
lines changed
6 files changed +33
-97
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,24 +10,22 @@ Compilation
10
10
11
11
You can currently compile either Server Proxy or Server Connect.
12
12
13
- Pull the project and get the dependencies :
13
+ Install Go 1.11+ and pull the project :
14
14
``` bash
15
- $ go get github.com/LilyPad/GoLilyPad
16
- $ go get github.com/satori/go.uuid
17
- $ go get gopkg.in/yaml.v2
18
- $ go get github.com/klauspost/compress/zlib
15
+ $ export GO111MODULE=on
16
+ $ git clone
[email protected] :LilyPad/GoLilyPad.git
19
17
```
20
18
21
19
### Server Connect ###
22
20
23
21
``` bash
24
- $ cd $GOPATH /src/github.com/LilyPad/ GoLilyPad/server/connect/main
22
+ $ cd GoLilyPad/server/connect/main
25
23
```
26
24
27
25
### Server Proxy ###
28
26
29
27
``` bash
30
- $ cd $GOPATH /src/github.com/LilyPad/ GoLilyPad/server/proxy/main
28
+ $ cd GoLilyPad/server/proxy/main
31
29
```
32
30
33
31
### Lastly ###
Original file line number Diff line number Diff line change
1
+ module github.com/LilyPad/GoLilyPad
2
+
3
+ go 1.12
4
+
5
+ require (
6
+ github.com/klauspost/compress v1.4.1
7
+ github.com/klauspost/cpuid v1.2.0
8
+ github.com/satori/go.uuid v1.2.0
9
+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
10
+ gopkg.in/yaml.v2 v2.2.2
11
+ )
Original file line number Diff line number Diff line change
1
+ github.com/klauspost/compress v1.4.0 h1:8nsMz3tWa9SWWPL60G1V6CUsf4lLjWLTNEtibhe8gh8 =
2
+ github.com/klauspost/compress v1.4.0 /go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A =
3
+ github.com/klauspost/compress v1.4.1 h1:8VMb5+0wMgdBykOV96DwNwKFQ+WTI4pzYURP99CcB9E =
4
+ github.com/klauspost/compress v1.4.1 /go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A =
5
+ github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5 h1:2U0HzY8BJ8hVwDKIzp7y4voR9CX/nvcfymLmg2UiOio =
6
+ github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5 /go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek =
7
+ github.com/klauspost/cpuid v1.2.0 h1:NMpwD2G9JSFOE1/TJjGSo5zG7Yb2bTe7eq1jH+irmeE =
8
+ github.com/klauspost/cpuid v1.2.0 /go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek =
9
+ github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww =
10
+ github.com/satori/go.uuid v1.2.0 /go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0 =
11
+ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
12
+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 /go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0 =
13
+ gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE =
14
+ gopkg.in/yaml.v2 v2.2.1 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
15
+ gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw =
16
+ gopkg.in/yaml.v2 v2.2.2 /go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI =
Original file line number Diff line number Diff line change
1
+ package GoLilyPad
You can’t perform that action at this time.
0 commit comments