mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
2af150493b
[body] [footer(s)]
10 lines
160 B
Bash
10 lines
160 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Installing required libs..."
|
|
pip install -r checker_requirements.txt
|
|
|
|
echo "Starting Celery worker..."
|
|
celery -A config worker -l INFO
|