"feat: Added debug server and related components for improved development experience"

This commit is contained in:
2025-05-23 07:24:51 +02:00
parent d457a8d86b
commit 9f6219832c
189 changed files with 35730 additions and 133 deletions

View File

@@ -0,0 +1,36 @@
@echo off
setlocal enabledelayedexpansion
echo [%date% %time%] Starte Backend-Debug-Server...
REM Pfad zum Debug-Server ermitteln
set "SCRIPT_DIR=%~dp0"
set "DEBUG_SERVER_DIR=%SCRIPT_DIR%debug-server"
REM Prüfe, ob das Debug-Server-Verzeichnis existiert
if not exist "%DEBUG_SERVER_DIR%" (
echo [%date% %time%] FEHLER: Debug-Server-Verzeichnis nicht gefunden: %DEBUG_SERVER_DIR%
exit /b 1
)
REM Prüfe, ob Python installiert ist
where python >nul 2>&1
if %ERRORLEVEL% neq 0 (
echo [%date% %time%] FEHLER: Python nicht gefunden. Bitte installieren Sie Python.
exit /b 1
)
REM Wechsle ins Debug-Server-Verzeichnis
cd "%DEBUG_SERVER_DIR%"
REM Installiere Abhängigkeiten, falls nötig
if exist "requirements.txt" (
echo [%date% %time%] Installiere Abhängigkeiten...
pip install -r requirements.txt
)
REM Starte den Debug-Server
echo [%date% %time%] Starte Backend-Debug-Server...
python app.py
endlocal