Files
scaev/monitor.sh
2025-12-09 08:04:16 +01:00

12 lines
281 B
Bash

#!/bin/bash
# Start the auction monitor with custom polling interval
# Usage: ./monitor.sh [interval_in_minutes]
# Default: 30 minutes
cd "$(dirname "$0")"
INTERVAL=${1:-30}
echo "Starting auction monitor (polling every $INTERVAL minutes)..."
python3 src/monitor.py "$INTERVAL"