work yay
All checks were successful
Docker Image / build (push) Successful in 2m29s

This commit is contained in:
LockeShor
2026-06-08 22:34:54 -04:00
commit a519e46482
10 changed files with 343 additions and 0 deletions

12
run-loop.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
# Run sync.py once immediately, then sleep for one hour between runs.
# Using sh for maximum compatibility in slim images.
set -e
while true; do
echo "Running sync.py at $(date -u)"
python sync.py || echo "sync.py exited with non-zero status"
echo "Sleeping for 3600 seconds"
sleep 3600
done