trip-planner/.env.local

41 lines
787 B
Text
Raw Permalink Normal View History

2025-09-26 01:13:44 +02:00
# Application
APP_NAME="Trip Planner"
APP_ENV=local
APP_KEY=base64:0YqH2qbjRZYGieiv8EiDVGUqEKLxT5Zwmv3nY9S75cc=
APP_DEBUG=true
APP_URL=http://localhost:8000
# Database
DB_CONNECTION=mysql
DB_HOST=database
DB_PORT=3306
DB_DATABASE=trip_planner
DB_USERNAME=trip_user
DB_PASSWORD=secret
# Redis
REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379
# Cache & Session
CACHE_DRIVER=redis
SESSION_DRIVER=redis
QUEUE_CONNECTION=redis
# Mail (using Mailpit for local development)
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@tripplanner.local"
MAIL_FROM_NAME="${APP_NAME}"
# Frontend URL for CORS
FRONTEND_URL=http://localhost:5173
# API Settings
API_PREFIX=api
SANCTUM_STATEFUL_DOMAINS=localhost:5173