From 50bfdc6166c36312d993cc2d12bf79d45296fb76 Mon Sep 17 00:00:00 2001 From: structix Date: Sun, 11 Oct 2020 18:16:26 +0200 Subject: [PATCH] Add README --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac8ea4b --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Trikotwaschliste + +Website: [https://deizisauer-waschweiber.de/](https://deizisauer-waschweiber.de/) + +## Building + +```sh +go build +``` + +## Upgrade vendor dependencies + +To update your local dependencies use the following command inside the root of this project: +```sh +go get -u -t ./... +``` +This will update the `go.mod` and `go.sum` file. To get the dependencies inside the vendor folder use: +```sh +go mod tidy +go mod vendor +``` \ No newline at end of file