mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	- Introduced a generic sso_warning.js.j2 template under templates/roles/web-app/templates/javascripts/ - Included this template in web-app-baserow/templates/javascript.js.j2 - Added new variable js_application_name in roles/web-app-baserow/vars/main.yml to make the warning application-specific - Implemented cookie-based logic so the warning is only shown once per user (default: 365 days) Reference: https://chatgpt.com/share/68aecdae-82d0-800f-b05e-f2cb680664f1
		
			
				
	
	
		
			36 lines
		
	
	
		
			782 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			782 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| features:
 | |
|   matomo:           true
 | |
|   css:              true
 | |
|   desktop:          true
 | |
|   central_database: true
 | |
|   logout:           true
 | |
|   javascript:       true
 | |
| docker:
 | |
|   services:
 | |
|     redis:
 | |
|       enabled:            true
 | |
|     database:
 | |
|       enabled:            true
 | |
|     baserow:  
 | |
|       backup:
 | |
|         no_stop_required: true
 | |
|       image:              "baserow/baserow"
 | |
|       version:            "latest"
 | |
|       name:               "baserow"
 | |
|   volumes:
 | |
|     data:                 "baserow_data"
 | |
| server:
 | |
|   domains:
 | |
|     canonical:
 | |
|       - baserow.{{ PRIMARY_DOMAIN }}
 | |
|   csp:
 | |
|     whitelist:
 | |
|       worker-src:
 | |
|         - "blob:"
 | |
|       connect-src:
 | |
|         - "https://sentry.com/"
 | |
|     flags:
 | |
|       script-src-elem:
 | |
|         unsafe-inline:  true
 | |
|       style-src:
 | |
|         unsafe-inline:  true |