From 83c24c14b9c0fc3afd272fb65a2d2003a39c20f0 Mon Sep 17 00:00:00 2001 From: Nathan Smith Date: Wed, 6 Nov 2024 19:31:52 +0000 Subject: [PATCH] Update .env.example with detailed configuration variables Expanded the .env.example file to include additional configuration settings for application, logging, database, session, cache, and mail. This update aligns the .env.example with the new placeholder values. --- .env.example | 64 ++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 52 insertions(+), 12 deletions(-) diff --git a/.env.example b/.env.example index 23185cad2..915091e7e 100644 --- a/.env.example +++ b/.env.example @@ -1,26 +1,66 @@ +APP_NAME=Laravel APP_ENV=local +APP_KEY= APP_DEBUG=true -APP_KEY=i53weLzCSdunQzNc2SXR2AE9XJVDuNaq +APP_TIMEZONE=UTC +APP_URL=http://localhost -DB_HOST=localhost -DB_DATABASE=database -DB_USERNAME=username -DB_PASSWORD=password +APP_LOCALE=en +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US -CACHE_DRIVER=file -SESSION_DRIVER=file -QUEUE_DRIVER=sync +APP_MAINTENANCE_DRIVER=file +# APP_MAINTENANCE_STORE=database -REDIS_HOST=localhost +PHP_CLI_SERVER_WORKERS=4 + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=sqlite +# DB_HOST=127.0.0.1 +# DB_PORT=3306 +# DB_DATABASE=laravel +# DB_USERNAME=root +# DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379 -MAIL_DRIVER=smtp -MAIL_HOST=mailtrap.io +MAIL_MAILER=log +MAIL_HOST=127.0.0.1 MAIL_PORT=2525 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_DEFAULT_REGION=us-east-1 +AWS_BUCKET= +AWS_USE_PATH_STYLE_ENDPOINT=false - +VITE_APP_NAME="${APP_NAME}" \ No newline at end of file