* #48 - postgreSQL db * #43 - vacation summary for employee (#66) * wip * wip * wip * wip * wip * wip * wip * #5 - bump dependencies * #43 - wip * #43 - add composer script * #43 - fix * #43 - fix * #43 - wip * #43 - ecs fix * #43 - cr fix * #43 - cr fix * #43 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> * #48 - redis stuff * #48 - user avatars using ui-avatars.com * #48 - fix * #48 - fix * Apply suggestions from code review Co-authored-by: Marcin Tracz <marcin.tracz@blumilk.pl> * #48 - cr fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Marcin Tracz <marcin.tracz@blumilk.pl>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| APP_NAME="Toby HR application"
 | |
| APP_ENV=local
 | |
| APP_KEY=
 | |
| APP_DEBUG=true
 | |
| APP_URL=http://localhost
 | |
| 
 | |
| LOG_CHANNEL=stack
 | |
| LOG_LEVEL=debug
 | |
| 
 | |
| DB_CONNECTION=pgsql
 | |
| DB_HOST=toby-db-dev
 | |
| DB_PORT=5432
 | |
| DB_DATABASE=toby
 | |
| DB_USERNAME=toby
 | |
| DB_PASSWORD=password
 | |
| DB_ROOT_PASSWORD=example
 | |
| 
 | |
| EXTERNAL_WEBSERVER_PORT=80
 | |
| 
 | |
| DOCKER_DEV_DB_EXTERNAL_PORT=5432
 | |
| DOCKER_DEV_DB_DATABASE=${DB_DATABASE}
 | |
| DOCKER_DEV_DB_USERNAME=${DB_USERNAME}
 | |
| DOCKER_DEV_DB_PASSWORD=${DB_PASSWORD}
 | |
| DOCKER_DEV_DB_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
 | |
| 
 | |
| DOCKER_TEST_DB_EXTERNAL_PORT=5433
 | |
| DOCKER_TEST_DB_DATABASE=${DB_DATABASE}
 | |
| DOCKER_TEST_DB_USERNAME=${DB_USERNAME}
 | |
| DOCKER_TEST_DB_PASSWORD=${DB_PASSWORD}
 | |
| DOCKER_TEST_DB_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
 | |
| 
 | |
| REDIS_PORT=6379
 | |
| REDIS_HOST=toby-redis
 | |
| 
 | |
| XDG_CONFIG_HOME=/tmp
 | |
| 
 | |
| BROADCAST_DRIVER=log
 | |
| CACHE_DRIVER=file
 | |
| QUEUE_CONNECTION=redis
 | |
| SESSION_DRIVER=redis
 | |
| SESSION_LIFETIME=120
 | |
| FILESYSTEM_DISK=local
 | |
| 
 | |
| MAILHOG_PORT=1025
 | |
| MAILHOG_DASHBOARD_PORT=8025
 | |
| 
 | |
| MAIL_MAILER=smtp
 | |
| MAIL_HOST=mailhog
 | |
| MAIL_PORT=${MAILHOG_PORT}
 | |
| MAIL_USERNAME=null
 | |
| MAIL_PASSWORD=null
 | |
| MAIL_ENCRYPTION=null
 | |
| MAIL_FROM_ADDRESS=hello@example.com
 | |
| MAIL_FROM_NAME="${APP_NAME}"
 | |
| 
 | |
| DOCKER_INSTALL_XDEBUG=false
 | |
| 
 | |
| GOOGLE_CLIENT_ID=
 | |
| GOOGLE_CLIENT_SECRET=
 | |
| GOOGLE_REDIRECT=http://localhost/login/google/end
 | |
| GOOGLE_CALENDAR_ID=
 | |
| LOCAL_EMAIL_FOR_LOGIN_VIA_GOOGLE=
 |