doc(web-app): add setup environment variables

This commit is contained in:
fastium
2025-05-23 22:38:40 +02:00
parent cb514d809a
commit 73608a40b9

View File

@@ -35,9 +35,20 @@ Then install the project dependencies by running:
npm install 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 ### Compile and run for development
```terminal ```terminal
npm run serve npm run serve
``` ```