You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
		
		
		
		
		
			
		
			
				
					
					
						
							70 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							70 lines
						
					
					
						
							1.2 KiB
						
					
					
				| # Laravel config to use with the .lando.yml file | |
| # Replace baslac with your app name | |
| APP_NAME="Scout Baslac" | |
| APP_ENV=local | |
| APP_KEY= | |
| APP_DEBUG=true | |
| APP_TIMEZONE=Europe/Zurich | |
| APP_URL=https://baslac.lndo.site | |
| 
 | |
| APP_LOCALE=fr | |
| APP_FALLBACK_LOCALE=en | |
| APP_FAKER_LOCALE=en_US | |
| 
 | |
| APP_MAINTENANCE_DRIVER=file | |
| # APP_MAINTENANCE_STORE=database | |
| 
 | |
| PHP_CLI_SERVER_WORKERS=4 | |
| 
 | |
| BCRYPT_ROUNDS=12 | |
| 
 | |
| LOG_CHANNEL=stack | |
| LOG_STACK=single | |
| LOG_DEPRECATIONS_CHANNEL=null | |
| LOG_LEVEL=debug | |
| 
 | |
| DB_CONNECTION=mysql | |
| DB_HOST=database | |
| DB_PORT=3306 | |
| DB_DATABASE=laravel | |
| DB_USERNAME=laravel | |
| DB_PASSWORD=laravel | |
| 
 | |
| SESSION_DRIVER=file | |
| 
 | |
| BROADCAST_CONNECTION=log | |
| FILESYSTEM_DISK=local | |
| QUEUE_CONNECTION=database | |
| 
 | |
| CACHE_STORE=database | |
| CACHE_PREFIX= | |
| 
 | |
| # memcached is not configured | |
| #MEMCACHED_HOST=127.0.0.1 | |
| 
 | |
| REDIS_CLIENT=phpredis | |
| REDIS_HOST=redis | |
| REDIS_PASSWORD=null | |
| REDIS_PORT=6379 | |
| 
 | |
| MAIL_MAILER=smtp | |
| MAIL_HOST=mailpit | |
| MAIL_PORT=1025 | |
| MAIL_USERNAME=null | |
| MAIL_PASSWORD=null | |
| MAIL_ENCRYPTION=null | |
| MAIL_FROM_ADDRESS="noreply@baslac.com" | |
| MAIL_FROM_NAME="${APP_NAME}" | |
| 
 | |
| AWS_URL="https://s3-baslac.lndo.site" | |
| AWS_ENDPOINT="https://s3-baslac.lndo.site" | |
| AWS_ACCESS_KEY_ID=minio | |
| AWS_SECRET_ACCESS_KEY=miniosecret | |
| AWS_DEFAULT_REGION=us-east-1 | |
| AWS_BUCKET=laravel | |
| AWS_USE_PATH_STYLE_ENDPOINT=true | |
| 
 | |
| VITE_APP_NAME="${APP_NAME}" | |
| 
 | |
| 
 | |
| 
 | |
| 
 |