The repository is mainly written in TypeScript and uses Vue to create a SPA (Single Page Application). If you want more information about the project itself you should have a look inside [Fluxios ducumentation](https://git.h2t.iar.kit.edu/student-projects/pse-ss23/web-based-statecharts/skgui-documentation).
<h3style="text-align: center;">Benedikt Engel, Julian Tusch, Yusuf Duran, Daniel Coman, Moritz Gleissner</h3>
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
## Table of Contents
-[Introduction](#introduction)
-[Installation](#installation)
-[Use Docker](#use-docker)
-[Development](#development)
## Introduction
The repository is mainly written in TypeScript and uses Vue to create a SPA (Single Page Application). If you want more information about the project itself you should have a look inside [Fluxios ducumentation](https://git.h2t.iar.kit.edu/student-projects/pse-ss23/web-based-statecharts/skgui-documentation) or the repositorys [wiki](https://git.h2t.iar.kit.edu/student-projects/pse-ss23/web-based-statecharts/fluxiofrontend/-/wikis/home) page.
Fluxio Frontend provides a Docker file with nginx for easy deployment. If you can't or don't want to use Docker you can provide fluxiofrontends static files with other methodes. You can ether compile them yourself or look inside the CI/CD pipeline and download the newest version of the dist/ folder.
...
...
@@ -10,13 +69,24 @@ FluxioFrontend provides a Docker file with nginx for easy deployment. If you can
For this you need to have [Docker installed](https://docs.docker.com/engine/install/) and the Docker.service should be running. You can check this with `docker info` or use `docker ps` to display a list of you running Docker containers.
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar)(and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) but one maniac development on Emacs so it works too.
### Type Support for `.vue` Imports in TS
...
...
@@ -69,12 +141,26 @@ npm run dev
npm run build
```
#### Build Documentation with [TypeDoc](https://typedoc.org/)
```sh
npm run build:doc
```
#### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
#### Run Integration Tests with [Playwright](https://playwright.dev/)
Requires the [provider mock](https://git.h2t.iar.kit.edu/student-projects/pse-ss23/web-based-statecharts/provider-mock) to run.