mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-14 13:47:07 +03:00
11 lines
214 B
Plaintext
11 lines
214 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
|
||
|
|
||
|
celery flower \
|
||
|
--app={{cookiecutter.project_slug}}.taskapp \
|
||
|
--broker="${CELERY_BROKER_URL}" \
|
||
|
--basic_auth="${CELERY_FLOWER_USER}:${CELERY_FLOWER_PASSWORD}"
|