This commit is contained in:
Tour
2025-12-07 12:20:51 +01:00
parent 450ec33101
commit 17af27ee99
2 changed files with 166 additions and 0 deletions

11
monitor.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/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"