fp/services/scout/watchdog.sh
CJ_Clippy 6d77138ebd
Some checks failed
ci / build (push) Failing after 1s
ci / Tests & Checks (push) Failing after 1s
improve parser
2025-06-27 22:54:40 -08:00

18 lines
276 B
Bash

#!/bin/bash
set -e
while true; do
echo "Starting app..."
node src/index.js
exit_code=$?
if [ $exit_code -eq 0 ]; then
echo "Exited normally. Not restarting."
break
fi
echo "App crashed (exit code $exit_code). Restarting in 2 seconds..."
sleep 2
done