Erster Checkin: Tool arbeitet

This commit is contained in:
2026-02-02 12:40:51 +01:00
parent 69fcca1fd0
commit 12926c7e83
12 changed files with 616 additions and 0 deletions

17
run.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
setlocal
REM Virtuelle Umgebung aktivieren
call venv\Scripts\activate.bat
if "%1"=="" (
echo Nutzung:
echo run.bat login ^<email^>
echo run.bat manager ^<manager_email^>
echo run.bat emails ^<email1^> [^<email2^> ...]
goto :eof
)
python -m app.main %*
endlocal