mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-10 21:53:11 +00:00
9 lines
143 B
Bash
9 lines
143 B
Bash
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o xtrace
|
|
|
|
|
|
rm -f './celerybeat.pid'
|
|
celery -A {{cookiecutter.project_slug}}.taskapp beat -l INFO
|