Files
bitchmin/bitchmin-api/start_with_jobs.sh
2020-11-04 18:36:08 +00:00

9 lines
192 B
Bash
Executable File

#!/bin/sh
# Run Celery worker
celery -A app.celery worker --loglevel=DEBUG --detach --pidfile=''
# Run Celery Beat
celery -A app.celery beat --loglevel=DEBUG --detach --pidfile=''
flask run