Initial resurrection kit — 81 scripts, 62 references, configs, systemd units, crons, Docker compose files, Caddy config, master README

This commit is contained in:
root
2026-07-15 17:45:36 -04:00
commit ae056eaf83
197 changed files with 26127 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# Shark scraper wrapper — silent on success, only outputs on failure
cd /root/shark-game/scraper
OUTPUT=$(python3 scrape.py 2>&1)
EXIT=$?
if [ $EXIT -ne 0 ]; then
echo "Shark scraper FAILED (exit $EXIT):"
echo "$OUTPUT"
exit $EXIT
fi
# Success = silent, no output, no notification