File size: 405 Bytes
490ec84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# 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"
|