diff --git a/Makefile b/Makefile index f6a48bec1..8d6fae717 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,3 @@ -# TODO(pocket/issues/43): Delete this files after moving the necessary helpers to mage.go. - CWD ?= CURRENT_WORKING_DIRECTIONRY_NOT_SUPPLIED # This flag is useful when running the consensus unit tests. It causes the test to wait up to the @@ -40,13 +38,9 @@ go_staticcheck: .PHONY: go_clean_deps ## Runs `go mod tidy` && `go mod vendor` +go_clean_deps: go mod tidy && go mod vendor -.PHONY: build -## Build Pocket's main entrypoint -build: - mage build - .PHONY: build_and_watch ## Continous build Pocket's main entrypoint as files change build_and_watch: diff --git a/README.md b/README.md index d272391fe..7bf4e1df0 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ The official implementation of the [V1 Pocket Network Protocol Specification](ht All the links you'll need are listed below. If you'd like to contribute to the Pocket V1 Protocol, start by: -1. Reading the **Contribution Guide** -2. Get things running by reading the **Development Guide** -3. Dive into any of the other guides or modules depending on what your interests are +1. Reading the [Contribution Guide](docs/contributing/CONTRIBUTING.md) +2. Get things running by reading the [Development Guide](docs/development/README.md) +3. Dive into any of the other guides or modules depending on where your interests lie