alle Default files rein

This commit is contained in:
mistangl
2026-04-10 12:11:52 +02:00
commit 385e33e882
12 changed files with 424 additions and 0 deletions

20
bin/activate_venv.bat Normal file
View File

@@ -0,0 +1,20 @@
@echo off
REM ================================================================
REM PLANTPLAN - Python Virtual Environment aktivieren
REM ================================================================
call "%~dp0setenv.bat"
if not exist "%PROJECT%\.venv" (
echo FEHLER: Virtual environment nicht gefunden.
echo Bitte zuerst bin\install_py.bat ausfuehren.
exit /b 1
)
call "%PROJECT%\.venv\Scripts\activate.bat"
echo Virtuelle Umgebung aktiviert.
echo Python-Version:
python --version
echo.
echo Installierte Pakete:
pip list