From f4a4a0700de876b322de1cefb29b6e649fe533ae Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 23 Jun 2024 16:14:36 +0200 Subject: [PATCH] fix(readme): add `source .env` to native instructions --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dcae692..6c9f21c 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,14 @@ Don't forget to direct your terminal to the Vencloud directory, e.g. via `cd Ven #### Natively > [!WARNING] -> At the current moment, Go 21 is not yet supported, you'll need Go 20! +> At the current moment, Go 21 is not yet supported, you'll need Go 20! > An easy way to get Go 20 is to run `go install golang.org/dl/go1.20.0@latest` and then use the `go1.20` command instead of `go` 1. Install the [Go programming language](https://go.dev/dl/) 2. Build the code: `go build -o backend` -3. Start the server: `./backend` +3. Start the server: + ```sh + source .env + + ./backend + ```