6 lines
93 B
Bash
6 lines
93 B
Bash
#!/bin/bash
|
|
|
|
celery worker -A app.celery --loglevel=info &
|
|
sleep 5
|
|
python -m app.run_tasks &
|