UPDATE: cleared and documented .env.exemple
This commit is contained in:
parent
3656c8169d
commit
f18e8c8177
1 changed files with 22 additions and 20 deletions
42
.env.example
42
.env.example
|
@ -4,25 +4,24 @@ APP_ENV=production
|
|||
APP_KEY=
|
||||
APP_DEBUG=false
|
||||
APP_URL=http://localhost
|
||||
# List with timezones https://www.php.net/manual/en/timezones.php
|
||||
APP_TIMEZONE=UTC
|
||||
APP_TIMEZONE=UTC # List with timezones https://www.php.net/manual/en/timezones.php
|
||||
### --- App Settings End --- ###
|
||||
|
||||
### --- DB Settings (required) --- ###
|
||||
### --- Database Settings (required) --- ###
|
||||
DB_CONNECTION=mysql
|
||||
DB_HOST=127.0.0.1
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=dashboard
|
||||
DB_USERNAME=dashboarduser
|
||||
DB_PASSWORD=
|
||||
### --- DB Settings End --- ###
|
||||
### --- Database Settings End --- ###
|
||||
|
||||
|
||||
# Google Recaptcha API Credentials - https://www.google.com/recaptcha/admin - reCaptcha V2 (not v3)
|
||||
### --- Google Recaptcha Settings --- ###
|
||||
RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
|
||||
RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
|
||||
### --- Google Recaptcha Settings End --- ###
|
||||
|
||||
# Mail Server Settings - (HOST -> SMTP Server)
|
||||
### --- Mail Server Settings --- ###
|
||||
MAIL_MAILER=smtp
|
||||
MAIL_HOST=mailhog
|
||||
MAIL_PORT=1025
|
||||
|
@ -31,25 +30,22 @@ MAIL_PASSWORD=null
|
|||
MAIL_ENCRYPTION=null
|
||||
MAIL_FROM_ADDRESS=null
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
### --- Mail Server Settings End --- ###
|
||||
|
||||
|
||||
# Laravel Logging Settings - https://laravel.com/docs/5.7/logging - Not needed to be changed
|
||||
### --- Logging Settings --- ###
|
||||
LOG_CHANNEL=stack
|
||||
LOG_LEVEL=debug
|
||||
### --- Logging Settings End --- ###
|
||||
|
||||
# Do not change anything below this line
|
||||
BROADCAST_DRIVER=log
|
||||
### --- Cache and Queue Settings --- ###
|
||||
CACHE_DRIVER=file
|
||||
QUEUE_CONNECTION=database
|
||||
SESSION_DRIVER=file
|
||||
SESSION_LIFETIME=120
|
||||
SETTINGS_CACHE_ENABLED=true
|
||||
### --- Cache and Queue Settings End --- ###
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
### --- External Services Credentials --- ###
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_DEFAULT_REGION=us-east-1
|
||||
|
@ -59,9 +55,15 @@ PUSHER_APP_ID=
|
|||
PUSHER_APP_KEY=
|
||||
PUSHER_APP_SECRET=
|
||||
PUSHER_APP_CLUSTER=mt1
|
||||
### --- External Services Credentials End --- ###
|
||||
|
||||
### --- Additional Configuration --- ###
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
|
||||
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
||||
|
||||
# Settings Cache
|
||||
SETTINGS_CACHE_ENABLED=true
|
||||
### --- Additional Configuration End --- ###
|
||||
|
|
Loading…
Add table
Reference in a new issue