mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 10:12:35 -04: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
 |