snapshot current state before gitea sync

This commit is contained in:
2026-02-18 10:50:24 +01:00
commit 93a3f9e6fe
59 changed files with 4540 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
# Installationsanleitung
## Bereitstellung Files
```sh
install/DataVaultGenerator-1.0.0.tar.gz
```
## Virtual Environment erstellen und aktivieren
Erstellen:
```sh
python3 -m venv venv
```
Aktivieren:
(Unix)
```sh
source venv/bin/activate
```
(Windows)
```sh
venv\Scripts\activate.bat
```
PIP aktualisieren:
```sh
pip install --upgrade pip
```
## Installation
### Core
Generator:
```sh
pip install install/DataVaultGenerator-1.0.0.tar.gz
```
Abhängigkeiten (nicht mehr nötig):
```sh
pip install -r requirements.txt
```
## Deinstallation
Generator:
```sh
pip uninstall DataVaultGenerator
```
pip freeze > to-uninstall.txt
pip uninstall -r to-uninstall.txt