From 73608a40b95f21d1cdd237acba8e9bf6e3bb74e9 Mon Sep 17 00:00:00 2001 From: fastium Date: Fri, 23 May 2025 22:38:40 +0200 Subject: [PATCH] doc(web-app): add setup environment variables --- web-app/README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/web-app/README.md b/web-app/README.md index 6dbe639..a519bfe 100644 --- a/web-app/README.md +++ b/web-app/README.md @@ -35,9 +35,20 @@ Then install the project dependencies by running: npm install ``` -Setup the environment variables in the `.env.template` file. +Setup the environment: + +linux: +```terminal +export VUE_APP_API_KEY=your_api_key +export VUE_APP_API_SECRET=your_api_secret +``` +windows: +```terminal +# use wsl ... +``` ### Compile and run for development + ```terminal npm run serve ```