| # DIGS Daemon Launcher Script | |
| # Starts the continuous DIGS engine monitor in background | |
| # Logs output to daemon.log for review | |
| SCRIPT_PATH="/root/late.io/backend/digs_engine/run_digs_daemon.py" | |
| LOG_PATH="/root/late.io/backend/digs_engine/daemon.log" | |
| echo "Launching DIGS daemon..." | |
| nohup python3 "$SCRIPT_PATH" > "$LOG_PATH" 2>&1 & | |
| echo "DIGS daemon started in background. Logs: $LOG_PATH" | |