This commit is contained in:
Alex Grintsvayg 2019-10-03 14:09:26 -04:00
parent bf9e90f14c
commit a745bafc58
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5
3 changed files with 6 additions and 4 deletions

View file

@ -6,7 +6,7 @@ env:
- GO111MODULE=on - GO111MODULE=on
go: go:
- 1.11.x - 1.13.x
cache: cache:
directories: directories:

2
go.mod
View file

@ -42,3 +42,5 @@ require (
google.golang.org/appengine v1.6.2 // indirect google.golang.org/appengine v1.6.2 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
) )
go 1.13

View file

@ -13,11 +13,11 @@ coming soon
## Running from Source ## Running from Source
This project requires [Go v1.10](https://golang.org/doc/install) or higher. This project requires [Go v1.11](https://golang.org/doc/install) or higher because it uses Go modules.
``` ```
go get -u github.com/lbryio/reflector.go git clone git@github.com:lbryio/reflector.go.git
cd "$(go env GOPATH)/src/github.com/lbryio/reflector.go" cd reflector.go
make make
./bin/prism-bin ./bin/prism-bin
``` ```