app/.env.example

67 lines
1.4 KiB
Text
Raw Normal View History

# Application Settings
2025-10-13 14:57:11 +02:00
APP_NAME=DishPlanner
APP_ENV=local
APP_KEY=
2025-10-13 14:57:11 +02:00
APP_DEBUG=true
APP_TIMEZONE=UTC
APP_URL=http://localhost:8000
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
# Logging
2025-10-13 14:57:11 +02:00
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
# Database Connection (Docker)
2025-10-13 14:57:11 +02:00
DB_CONNECTION=mysql
DB_HOST=db # Use 'db' for Docker, 'localhost' for local
2025-10-13 14:57:11 +02:00
DB_PORT=3306
DB_DATABASE=dishplanner
DB_USERNAME=dishplanner
DB_PASSWORD=dishplanner
DB_ROOT_PASSWORD=root # For Docker MariaDB root user
2025-10-13 14:57:11 +02:00
# Session & Cache
SESSION_DRIVER=file # Use 'database' for production
2025-10-13 14:57:11 +02:00
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
CACHE_STORE=file
CACHE_PREFIX=dishplanner
# Queue
QUEUE_CONNECTION=sync # Use 'database' for production
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
2025-10-13 14:57:11 +02:00
# Redis (Optional - uncomment if using Redis)
# REDIS_CLIENT=phpredis
# REDIS_HOST=redis # Use 'redis' for Docker
# REDIS_PASSWORD=null
# REDIS_PORT=6379
2025-10-13 14:57:11 +02:00
# Mail Settings
MAIL_MAILER=log # Use 'smtp' for production
MAIL_HOST=mailhog # Use 'mailhog' for Docker dev
MAIL_PORT=1025
2025-10-13 14:57:11 +02:00
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="noreply@dishplanner.local"
2025-10-13 14:57:11 +02:00
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}"