From e4bfcd258a1ee5c7b2adbde5d9743285d638e877 Mon Sep 17 00:00:00 2001 From: fredericrous Date: Mon, 25 Jan 2021 17:56:09 +0000 Subject: [PATCH] update contributing.md --- docs/contributing.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/contributing.md b/docs/contributing.md index 545827e5..ebb54bc0 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -31,6 +31,13 @@ And finally install [golangci-lint](https://github.com/golangci/golangci-lint#in You might want to use an editor such as [Visual Studio Code](https://code.visualstudio.com/download) with the [Go extension](https://code.visualstudio.com/docs/languages/go). Working settings are already in [.vscode/settings.json](../.vscode/settings.json). +## Build and Run + +```sh +go build -o app cmd/updater/main.go +LISTENING_PORT=8000 ./app +``` + ## Commands available - Test the code: `go test ./...`