-[Set up environment variables](#set-up-environment-variables)
-[Type-Check, compile and minify for production](#type-check-compile-and-minify-for-production)
-[Setup SSH-Tunnel](#setup-ssh-tunnel)
-[Build cocumentation with TypeDoc](#build-documentation-with-typedoc)
-[Build documentation with TypeDoc](#build-documentation-with-typedoc)
-[Run unit tests with Vitest](#run-unit-tests-with-vitest)
-[Run integration tests with Playwright](#run-integration-tests-with-playwright)
-[Lint with ESLint](#lint-with-eslint)
...
...
@@ -212,8 +212,8 @@ npm run dev
#### Set up environment variables
1.`VITE_API_BASE_URL=$URL` The base url for api request. (replace $URL with the actual url)
2.`PORT=$PORT` The port specifies the port for the frontend to run on. (replace $PORT with an actual port number)
1.`VITE_API_BASE_URL=$URL` The base url for api requests. Default is http://localhost:3300/api/v1. (replace $URL with the actual url)
2.`PORT=$PORT` The port specifies the port for the frontend to run on. The frontend runs on http://localhost:5173 by default. (replace $PORT with an actual port number)
#### Type-Check, compile and minify for production