From b2d738a3493eae7fd977fda72fd506b7f007a76a Mon Sep 17 00:00:00 2001 From: David Dias Date: Sat, 19 Aug 2017 18:07:40 +0200 Subject: [PATCH] docs: add a note about gxifying deps --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 3da660b..5de5a36 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,20 @@ $ go test ./p2p/ ## Development +### Dependencies + +While developing, you need to use gx to install and link your dependencies, to do that, run: + +```sh +> make deps +``` + +Before commiting and pushing to Github, make sure to rewind the gx'ify of dependencies. You can do that with: + +```sh +> make publish +``` + ### Tests Running of individual tests is done through `go test ` -- GitLab