# Getting started

Es werden zwei Terminal Instanzen benötigt. Eine für das Backend und eine für das Frontend.

## Backend
1. Wechseln in das Backend Verzeichnis
```bash
cd backend
```
2. Erstellen von python virtual environment
```bash
python -m venv env
```
3. Aktivieren des virtual environment
```bash
.\env\Scripts\activate.ps1
```
4. Installieren der benötigten Pakete
```bash
pip install -r reqs.txt
```
5. Starten des Backends
```bash
python src/app.py
```

## Frontend
**[Angular CLI](https://angular.dev/installation) muss installiert sein.**

1. Wechseln in das Frontend Verzeichnis
```bash
cd frontend
```
2. Ng serve starten
```bash
ng serve
```

## Anwendung
Die Anwendung ist unter [http://localhost:4200](http://localhost:4200) erreichbar.

Die Einführung in die Anwendung ist unter [http://localhost:4200/introduction](http://localhost:4200/introduction) erreichbar.


Das Spiel ist unter [http://localhost:4200/game](http://localhost:4200/game) erreichbar.