Files
Munich-news/transport_crawler/start.sh
2025-11-14 13:00:36 +01:00

12 lines
259 B
Bash

#!/bin/bash
# Start the scheduler, worker, and API server
# Start the worker in the background
python -u worker.py &
# Start the API server in the background
python -u api_service.py &
# Start the scheduler in the foreground
python -u scheduled_crawler.py