59 lines
1.3 KiB
Plaintext
59 lines
1.3 KiB
Plaintext
# ===========================================
|
|
# Whisper Money - Production Environment
|
|
# ===========================================
|
|
# Copy this file to .env and configure for your production environment
|
|
|
|
# Application
|
|
APP_NAME="Whisper Money"
|
|
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_URL=https://your-domain.com
|
|
APP_KEY= # Auto-generated on first startup if empty
|
|
|
|
APP_LOCALE=en
|
|
APP_FALLBACK_LOCALE=en
|
|
APP_FAKER_LOCALE=en_US
|
|
|
|
# Logging
|
|
LOG_CHANNEL=stack
|
|
LOG_STACK=single
|
|
LOG_LEVEL=error
|
|
|
|
# Database (MySQL)
|
|
DB_CONNECTION=mysql
|
|
DB_HOST=mysql
|
|
DB_PORT=3306
|
|
DB_DATABASE=whisper_money
|
|
DB_USERNAME=whisper_money
|
|
DB_PASSWORD=your-secure-password
|
|
|
|
# Cache & Sessions (Redis runs inside the container)
|
|
CACHE_STORE=redis
|
|
SESSION_DRIVER=redis
|
|
SESSION_LIFETIME=120
|
|
SESSION_ENCRYPT=true
|
|
|
|
# Queue
|
|
QUEUE_CONNECTION=database
|
|
|
|
# Redis (internal to container - no configuration needed)
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PORT=6379
|
|
|
|
# Email - Resend (Recommended for production)
|
|
MAIL_MAILER=resend
|
|
RESEND_API_KEY=your-resend-api-key
|
|
MAIL_FROM_ADDRESS=no-reply@your-domain.com
|
|
MAIL_FROM_NAME="Whisper Money"
|
|
MAIL_DRIP_FROM_ADDRESS=hi@your-domain.com
|
|
MAIL_DRIP_FROM_NAME="Álvaro and Víctor"
|
|
|
|
# Stripe (Optional - for subscriptions)
|
|
STRIPE_KEY=
|
|
STRIPE_SECRET=
|
|
STRIPE_WEBHOOK_SECRET=
|
|
SUBSCRIPTIONS_ENABLED=false
|
|
|
|
# UI Configuration
|
|
HIDE_AUTH_BUTTONS=false
|