From b924cd5296e7b01c9eb71ed80d86931154934404 Mon Sep 17 00:00:00 2001 From: Andreas Ulm Date: Thu, 25 Apr 2019 16:16:57 +0200 Subject: [PATCH] added 'go get' command & build instructions (#16) (#19) Signed-off-by: Andreas Ulm --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ee2ad88..07fa5df 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ the Gitea API implementation. Currently no prebuilt binaries are provided. To install, a Go installation is needed. ```sh +go get code.gitea.io/tea go install code.gitea.io/tea ``` @@ -30,6 +31,15 @@ tea releases > If you are inside a git repository hosted on a gitea instance, you don't need to specify the `--login` and `--repo` flags! +## Compilation + +To compile the sources yourself run the following: +```sh +go get code.gitea.io/tea +cd "${GOPATH}/src/code.gitea.io/tea" +go build +``` + ## Contributing Fork -> Patch -> Push -> Pull Request