diff --git a/CHANGELOG.md b/CHANGELOG.md index 51575af..381d3ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v6.0.0 +---------- + * Update README + v5.7.2 ---------- * add status field to index for querying diff --git a/README.md b/README.md index 15ebe9a..86e2939 100644 --- a/README.md +++ b/README.md @@ -45,19 +45,13 @@ Recommended settings for error reporting: # Development -Install Indexer source in your workspace with: - -``` -go get github.com/nyaruka/rp-indexer -``` - -Build Indexer with: +Once you've checked out the code, you can build Indexer with: ``` go build github.com/nyaruka/rp-indexer/cmd/rp-indexer ``` -This will create a new executable in your current directory `rp-indexer` +This will create a new executable in $GOPATH/bin called `rp-indexer`. To run the tests you need to create the test database: @@ -68,7 +62,7 @@ $ createdb elastic_test To run all of the tests: ``` -go test github.com/nyaruka/rp-indexer/... -p=1 +go test ./... -p=1 ``` # Usage