FleetCart/.env.example

70 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2023-12-03 14:07:47 +00:00
#Application
2023-06-11 12:14:03 +00:00
APP_ENV=local
APP_DEBUG=true
APP_CACHE=false
APP_INSTALLED=false
APP_KEY=
APP_URL=http://localhost
2023-12-03 14:07:47 +00:00
#Ignition
2023-06-11 12:14:03 +00:00
IGNITION_EDITOR=vscode
2023-12-03 14:07:47 +00:00
#Logging
2023-06-11 12:14:03 +00:00
LOG_CHANNEL=stack
2023-12-03 14:07:47 +00:00
#Database
2023-06-11 12:14:03 +00:00
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
2023-12-03 14:07:47 +00:00
#Queue
2023-06-11 12:14:03 +00:00
QUEUE_DRIVER=sync
2023-12-03 14:07:47 +00:00
#Cache
2023-06-11 12:14:03 +00:00
CACHE_DRIVER=file
2023-12-03 14:07:47 +00:00
#Session
2023-06-11 12:14:03 +00:00
SESSION_DRIVER=file
2023-12-03 14:07:47 +00:00
#File System
2023-06-11 12:14:03 +00:00
FILESYSTEM_DRIVER=public_storage
2023-12-03 14:07:47 +00:00
#Redis
2023-06-11 12:14:03 +00:00
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
2023-12-03 14:07:47 +00:00
#Mail
2023-06-11 12:14:03 +00:00
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME=null
MAIL_ENCRYPTION=null
2023-12-03 14:07:47 +00:00
#Mailchimp
MAILCHIMP_APIKEY=
#AWS
2023-06-11 12:14:03 +00:00
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
2023-12-03 14:07:47 +00:00
#Scout
2023-06-11 12:14:03 +00:00
SCOUT_QUEUE=false
2023-12-03 14:07:47 +00:00
#Laravel DataTables (yajra/laravel-datatables)
2023-06-11 12:14:03 +00:00
DATATABLES_ERROR=null
2023-12-03 14:07:47 +00:00
#Debugbar for Laravel (barryvdh/laravel-debugbar)
2023-06-11 12:14:03 +00:00
DEBUGBAR_ENABLED=false
2023-12-03 14:07:47 +00:00
#Laravel Query Detector (beyondcode/laravel-query-detector)
2023-06-11 12:14:03 +00:00
QUERY_DETECTOR_ENABLED=false