This commit is contained in:
Tour
2025-12-09 08:04:16 +01:00
commit e69563d4d6
37 changed files with 7262 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"