← back to Wine Finder Next

scripts/run-daily-crawler.sh

18 lines

#!/bin/bash

# Daily Wine Crawler for Wine Finder Next
# Runs at 6am daily

cd /root/Projects/wine-finder-next

echo "==================================="
echo "Daily Wine Crawl - $(date)"
echo "==================================="

# Run the massive wine crawl
/tmp/massive-wine-crawl.sh

echo ""
echo "Crawl completed at $(date)"
echo "==================================="