9 lines
186 B
Bash
9 lines
186 B
Bash
#!/bin/bash
|
|
# Start both the scheduler and the worker
|
|
|
|
# Start the worker in the background
|
|
python -u worker.py &
|
|
|
|
# Start the scheduler in the foreground
|
|
python -u scheduled_crawler.py
|