mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 21:26:53 +03:00
b22045bcd4
Using system Python 3 distribution (3.7.3) in order to allow the use of Debian packages for numpy, scipy, etc. without the need of building them or installing build dependencies. Changed `#!/bin/sh` in shell scripts to `#!/bin/bash` to make `set -o pipefail` work.
11 lines
196 B
Bash
11 lines
196 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
|
|
celery flower \
|
|
--app=config.celery_app \
|
|
--broker="${CELERY_BROKER_URL}" \
|
|
--basic_auth="${CELERY_FLOWER_USER}:${CELERY_FLOWER_PASSWORD}"
|