app/.env.example

66 lines
1.4 KiB
Text

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