8 lines
143 B
Bash
Executable File
8 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "start workers"
|
|
../.venv/bin/python manage.py start_workers
|
|
|
|
echo "start celery"
|
|
../.venv/bin/celery -A home worker -l info
|