From ea8b3b4019085fa3c8ba7b5dc60c3ff86b0b6cdb Mon Sep 17 00:00:00 2001 From: Sam Herrmann Date: Wed, 2 Sep 2020 10:02:51 -0400 Subject: [PATCH] Update Developing section in README --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 400e1f4..89c714e 100644 --- a/README.md +++ b/README.md @@ -32,15 +32,20 @@ For single-page applications, this flag is typically set to `index.html`. ### Required Tools * [Go](https://golang.org/) +* [GNU Make](https://www.gnu.org/software/make/) * Text editor (Recommended: [VSCode](https://code.visualstudio.com/) with [Go extension](https://marketplace.visualstudio.com/items?itemName=golang.Go)) -### Build it from source +### Build -```shell -> clone https://github.com/samherrmann/serveit.git -> cd root/of/cloned/repo -> go build +```sh +> make build +``` + +### Test + +```sh +> make test ```