Files

49 lines
770 B
Bash
Raw Permalink Normal View History

2026-06-01 16:11:29 +02:00
APP_NAME="Glastree"
2026-05-26 08:14:29 +02:00
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
2026-06-01 16:11:29 +02:00
APP_LOCALE=it
2026-05-26 08:14:29 +02:00
APP_FALLBACK_LOCALE=en
2026-06-01 16:11:29 +02:00
APP_FAKER_LOCALE=it_IT
2026-05-26 08:14:29 +02:00
APP_MAINTENANCE_DRIVER=file
BCRYPT_ROUNDS=12
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
2026-06-01 16:11:29 +02:00
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=glastree
DB_USERNAME=glastree
DB_PASSWORD=
2026-05-26 08:14:29 +02:00
2026-06-01 16:11:29 +02:00
SESSION_DRIVER=file
2026-05-26 08:14:29 +02:00
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
2026-06-01 16:11:29 +02:00
QUEUE_CONNECTION=file
2026-05-26 08:14:29 +02:00
2026-06-01 16:11:29 +02:00
CACHE_STORE=file
2026-05-26 08:14:29 +02:00
MAIL_MAILER=log
MAIL_SCHEME=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"
VITE_APP_NAME="${APP_NAME}"