LATE.IO2 / backend /digs_engine /digs_back_daemon.sh
AIEONE
Initial commit syncing local server with Hugging Face Space
490ec84
#!/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"