refactor: modernize project and improve error handling and documentation

This commit is contained in:
Patryk Hegenberg 2026-02-11 15:24:26 +01:00
parent e27bf2a098
commit d87d0cce11
17 changed files with 1793 additions and 188 deletions

8
scripts/scheduler.sh Normal file
View file

@ -0,0 +1,8 @@
#!/bin/bash
echo "Starte Pipeline Scheduler (Intervall: $INTERVAL Sekunden)"
while true; do
echo "Führe Pipeline aus: $(date)"
python main.py run
echo "Pipeline beendet. Warte $INTERVAL Sekunden..."
sleep ${INTERVAL:-3600}
done