From a2925cf55bee4c71ac5be1bad66cb3ec2230056d Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 5 Nov 2023 17:09:46 +0100 Subject: [PATCH] docs: clarify minimum required go version --- docs/content/doc/setup/build-from-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/doc/setup/build-from-source.md b/docs/content/doc/setup/build-from-source.md index ba69d6eceb4..550ee7d6ce2 100644 --- a/docs/content/doc/setup/build-from-source.md +++ b/docs/content/doc/setup/build-from-source.md @@ -19,7 +19,7 @@ To completely build Vikunja from source, you need to build the api and frontend. The Vikunja API has no other dependencies than go itself. That means compiling it boils down to these steps: -1. Make sure [Go](https://golang.org/doc/install) is properly installed on your system. You'll need at least Go `1.19`. +1. Make sure [Go](https://golang.org/doc/install) is properly installed on your system. You'll need at least Go `1.21`. 2. Make sure [Mage](https://magefile.org) is properly installed on your system. 3. Clone the repo with `git clone https://code.vikunja.io/api` and switch into the directory. 4. Run `mage build` in the source of this repo. This will build a binary in the root of the repo which will be able to run on your system.