mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 06:45:05 +01: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
|