9 lines
182 B
Bash
9 lines
182 B
Bash
#!/bin/bash
|
|
# Start both the API server and the worker
|
|
|
|
# Start the worker in the background
|
|
python -u worker.py &
|
|
|
|
# Start the API server in the foreground
|
|
python -u api_service.py
|