mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
8 lines
149 B
Bash
8 lines
149 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo "Checking if we should start flower..."
|
|
|
|
if [[ -n "${PAPERLESS_ENABLE_FLOWER}" ]]; then
|
|
celery --app paperless flower
|
|
fi
|