refactor: modernize project and improve error handling and documentation
This commit is contained in:
parent
e27bf2a098
commit
d87d0cce11
17 changed files with 1793 additions and 188 deletions
8
scripts/scheduler.sh
Normal file
8
scripts/scheduler.sh
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue