fix(readme): fix .env loading in native instructions

This commit is contained in:
Vendicated
2024-06-23 16:21:06 +02:00
parent f4a4a0700d
commit 98559f2750
+2 -1
View File
@@ -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
```