Commit local django celery start scripts back

This commit is contained in:
Nikita P. Shupeyko 2018-05-21 15:34:28 +03:00
parent 849f64e1a5
commit cfff5b9d08
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#!/bin/sh
set -o errexit
set -o pipefail
set -o nounset
set -o xtrace
rm -f './celerybeat.pid'
celery -A {{cookiecutter.project_slug}}.taskapp beat -l INFO

View File

@ -0,0 +1,9 @@
#!/bin/sh
set -o errexit
set -o pipefail
set -o nounset
set -o xtrace
celery -A {{cookiecutter.project_slug}}.taskapp worker -l INFO