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