aboutsummaryrefslogblamecommitdiffstats
path: root/compose/production/django/celery/flower/start
blob: 4180d6778dc9b3150aa7d3f40f3a6552dac524d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                  
#!/bin/bash

set -o errexit
set -o nounset


exec celery \
    -A config.celery_app \
    -b "${CELERY_BROKER_URL}" \
    flower \
    --basic_auth="${CELERY_FLOWER_USER}:${CELERY_FLOWER_PASSWORD}"