Auto-updated file in CI authored by Moritz Gleissner's avatar Moritz Gleissner
......@@ -23,6 +23,7 @@
- [Project setup](#project-setup)
- [Compile and hot-reload for development](#compile-and-hot-reload-for-development)
- [Type-Check, compile and minify for production](#type-check-compile-and-minify-for-production)
- [Setup SSH-Tunnel]
- [Build cocumentation 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)
......@@ -210,6 +211,12 @@ npm run dev
```sh
npm run build
```
#### Setup SSH-Tunnel
````sh
ssh -L 3000:localhost:3000 -J %r@jump.h2t.iar.kit.edu $USERNAME@i61pc086.h2t.iar.kit.edu
````
replace $USERNAME with your ssh-username.
#### Build documentation with [TypeDoc](https://typedoc.org/)
......
......