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