mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	Optimized attendize role. Role can be removed as soon as pretix as alternative tool is implemented
This commit is contained in:
		| @@ -1,7 +1,7 @@ | ||||
| {% include 'roles/docker-compose/templates/base.yml.j2' %} | ||||
|  | ||||
|   web: | ||||
|     image: "{{ applications | get_app_conf(application_id, 'images.web', True) }}" | ||||
|     image: "{{ ATTENDIZE_WEB_IMAGE }}:{{ ATTENDIZE_WEB_VERSION }}" | ||||
|     ports: | ||||
|     - "{{ ports.localhost.http[application_id] }}:80" | ||||
|     volumes: | ||||
| @@ -15,7 +15,7 @@ | ||||
| {% include 'roles/docker-container/templates/networks.yml.j2' %} | ||||
|  | ||||
|   worker: | ||||
|     image: "{{ applications | get_app_conf(application_id, 'images.worker', True) }}" | ||||
|     image: "{{ ATTENDIZE_WORKER_IMAGE }}:{{ ATTENDIZE_WORKER_VERSION }}" | ||||
| {% include 'roles/docker-container/templates/depends_on/dmbs_incl.yml.j2' %} | ||||
|       maildev: | ||||
| {% include 'roles/docker-container/templates/networks.yml.j2' %} | ||||
|   | ||||
							
								
								
									
										76
									
								
								roles/web-app-attendize/templates/env.j2
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								roles/web-app-attendize/templates/env.j2
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,76 @@ | ||||
| # https://github.com/Attendize/Attendize/blob/develop/.env.example | ||||
|  | ||||
| ATTENDIZE_DEV=true | ||||
| ATTENDIZE_CLOUD=false | ||||
|  | ||||
| APP_NAME=Attendize | ||||
| APP_ENV=local | ||||
| APP_KEY= | ||||
| APP_DEBUG=true | ||||
| APP_URL=https://localhost:8081 | ||||
|  | ||||
| LOG_CHANNEL=stack | ||||
|  | ||||
| DB_CONNECTION=mysql | ||||
| DB_HOST=db | ||||
| DB_PORT=3306 | ||||
| DB_DATABASE=attendize | ||||
| DB_USERNAME=attendize | ||||
| DB_PASSWORD=attendize | ||||
|  | ||||
| BROADCAST_DRIVER=log | ||||
| CACHE_DRIVER=file | ||||
| QUEUE_CONNECTION=sync | ||||
| SESSION_DRIVER=file | ||||
| SESSION_LIFETIME=120 | ||||
|  | ||||
| REDIS_HOST=127.0.0.1 | ||||
| REDIS_PASSWORD=null | ||||
| REDIS_PORT=6379 | ||||
|  | ||||
| MAIL_DRIVER=smtp | ||||
| MAIL_HOST=maildev | ||||
| MAIL_PORT=1025 | ||||
| MAIL_USERNAME=null | ||||
| MAIL_PASSWORD=null | ||||
| MAIL_ENCRYPTION=null | ||||
|  | ||||
| AWS_ACCESS_KEY_ID= | ||||
| AWS_SECRET_ACCESS_KEY= | ||||
| AWS_DEFAULT_REGION=us-east-1 | ||||
| AWS_BUCKET= | ||||
|  | ||||
| PUSHER_APP_ID= | ||||
| PUSHER_APP_KEY= | ||||
| PUSHER_APP_SECRET= | ||||
| PUSHER_APP_CLUSTER=mt1 | ||||
|  | ||||
| MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" | ||||
| MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | ||||
|  | ||||
| # Attendize Variables | ||||
| DEFAULT_DATEPICKER_SEPERATOR="-" | ||||
| DEFAULT_DATEPICKER_FORMAT="yyyy-MM-dd HH:mm" | ||||
| DEFAULT_DATETIME_FORMAT="Y-m-d H:i" | ||||
| APP_TIMEZONE= | ||||
|  | ||||
| MAIL_FROM_ADDRESS=testing@attendize.com | ||||
| MAIL_FROM_NAME=testing_service | ||||
|  | ||||
| # https://github.com/NitMedia/wkhtml2pdf#driver-types | ||||
| WKHTML2PDF_BIN_FILE=wkhtmltopdf-amd64 | ||||
|  | ||||
| # Google Analytics | ||||
| GOOGLE_ANALYTICS_ID= | ||||
| GOOGLE_MAPS_GEOCODING_KEY= | ||||
|  | ||||
| # Captcha Configuration | ||||
| CAPTCHA_IS_ON=false | ||||
| # can be recaptcha or hcaptcha | ||||
| CAPTCHA_TYPE= | ||||
| CAPTCHA_KEY= | ||||
| CAPTCHA_SECRET= | ||||
|  | ||||
| TWITTER_WIDGET_ID= | ||||
|  | ||||
| LOG=errorlog | ||||
		Reference in New Issue
	
	Block a user