From 98559f27503df310a5b2ef47be8536255bd4678f Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 23 Jun 2024 16:21:06 +0200 Subject: [PATCH] fix(readme): fix .env loading in native instructions --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c9f21c..739e6cc 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,8 @@ Don't forget to direct your terminal to the Vencloud directory, e.g. via `cd Ven 2. Build the code: `go build -o backend` 3. Start the server: ```sh - source .env + # Load the .env file + export $(grep -v '^#' .env | xargs) ./backend ```