Initial
This commit is contained in:
11
monitor.sh
Normal file
11
monitor.sh
Normal 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"
|
||||
Reference in New Issue
Block a user