NeowayLabs / neosearch

Full Text Search Library
30 stars 4 forks source link

[CHANGE] Added missing vendoring packages and fixed README #38

Closed ppizarro closed 8 years ago

ppizarro commented 8 years ago

The command "go get -u -v github.com/NeowayLabs/neosearch" doesn't work for me. The problem is that no buildable Go source files in the root directory, I fixed documentation to use the command: "go get -tags leveldb -v -u -t github.com/NeowayLabs/neosearch/..."

The -t flag instructs get to also download the packages required to build the tests for the specified packages.

the pattern "./..." means start in the current directory ("./") and find all packages below that directory ("...")

The build using Docker doesn't work for me. I added missing vendoring packages in the Dockerfile.

ppizarro commented 8 years ago

When I updated go to version 1.5 I had to add the flag '-insecure' to the go get command:

go get -tags leveldb -v -u -t -insecure github.com/NeowayLabs/neosearch/...

This because gommap package uses http and not https. In version 1.5 go does not download packages from http by default.

i4ki commented 8 years ago

Thanks @ppizarro =D