initial commit

This commit is contained in:
2026-03-15 14:51:29 +01:00
commit 94051dd0f8
20 changed files with 2842 additions and 0 deletions

27
run.bat Executable file
View File

@@ -0,0 +1,27 @@
@echo off
setlocal
REM 1. Prüfen, ob venv existiert, sonst erstellen
if not exist venv (
echo Erstelle Python venv...
python -m venv venv
)
REM 2. venv aktivieren
echo Aktiviere venv...
call venv\Scripts\activate
REM 3. Python-Abhängigkeiten installieren
echo Installiere Python requirements...
pip install --upgrade pip
pip install -r requirements.txt
REM 4. Tauri App starten
echo Starte die Tauri App...
cargo run --manifest-path src-tauri/Cargo.toml
REM 6. Deaktivieren (optional)
deactivate
endlocal
pause