12 lines
281 B
Bash
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"
|