This commit is contained in:
2026-05-08 14:53:53 +02:00
parent 01f05b23e9
commit 3ca2fea861
10597 changed files with 2474786 additions and 488 deletions

View File

@@ -0,0 +1,20 @@
# AZA Desktop Development Start
# Aktiviert die venv und startet die Desktop-App
$ErrorActionPreference = "Stop"
$venvActivate = Join-Path $PSScriptRoot ".venv\Scripts\Activate.ps1"
if (-not (Test-Path $venvActivate)) {
Write-Host "Virtuelle Umgebung nicht gefunden." -ForegroundColor Red
Write-Host "Bitte zuerst erstellen:" -ForegroundColor Yellow
Write-Host " python -m venv .venv" -ForegroundColor Yellow
Write-Host " .\.venv\Scripts\Activate.ps1" -ForegroundColor Yellow
Write-Host " pip install -r requirements-dev.txt" -ForegroundColor Yellow
exit 1
}
& $venvActivate
Write-Host "Starte AZA Desktop (Development)..." -ForegroundColor Cyan
python (Join-Path $PSScriptRoot "basis14.py")