mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-12 04:38:07 +03:00
8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
|
||
|
|
||
|
celery -A {{cookiecutter.project_slug}}.taskapp worker -l INFO
|