Files
michaelschiemer/.env.example
Michael Schiemer fc3d7e6357 feat(Production): Complete production deployment infrastructure
- Add comprehensive health check system with multiple endpoints
- Add Prometheus metrics endpoint
- Add production logging configurations (5 strategies)
- Add complete deployment documentation suite:
  * QUICKSTART.md - 30-minute deployment guide
  * DEPLOYMENT_CHECKLIST.md - Printable verification checklist
  * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle
  * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference
  * production-logging.md - Logging configuration guide
  * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation
  * README.md - Navigation hub
  * DEPLOYMENT_SUMMARY.md - Executive summary
- Add deployment scripts and automation
- Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment
- Update README with production-ready features

All production infrastructure is now complete and ready for deployment.
2025-10-25 19:18:37 +02:00

87 lines
2.3 KiB
Plaintext

# Projektname für Docker Compose
COMPOSE_PROJECT_NAME=michaelschiemer
# Anwendungseinstellungen
APP_ENV=development
APP_DEBUG=true
# API-Konfiguration
# SECURITY: Replace with your actual RapidMail credentials
RAPIDMAIL_USERNAME=your_rapidmail_username_here
RAPIDMAIL_PASSWORD=your_rapidmail_password_here
RAPIDMAIL_DEFAULT_LIST_ID=your_list_id_here
# Shopify API-Konfiguration
# SECURITY: Replace with your actual Shopify credentials
SHOPIFY_SHOP_DOMAIN=yourstore.myshopify.com
SHOPIFY_ACCESS_TOKEN=shpat_your_access_token_here
SHOPIFY_API_VERSION=2024-04
# PostgreSQL Datenbank-Konfiguration
# SECURITY: Replace with your actual database credentials
DB_DRIVER=pgsql
DB_HOST=db
DB_PORT=5432
DB_DATABASE=michaelschiemer
DB_USERNAME=postgres
DB_PASSWORD=your_secure_database_password_here
DB_CHARSET=utf8
DB_SCHEMA=public
# PostgreSQL Connection Pooling (optional)
DB_POOL_MIN=2
DB_POOL_MAX=10
# Redis-Konfiguration (falls benötigt)
# REDIS_HOST=redis
# REDIS_PORT=6379
# REDIS_PASSWORD=null
# Externer Port für Web-Zugriff
APP_PORT=8000
# PHP-Version (für Build)
PHP_VERSION=8.4
# Redis Konfiguration
REDIS_SCHEME=tcp
REDIS_HOST=redis
REDIS_PORT=6379
# Rate Limiting Konfiguration
RATE_LIMIT_DEFAULT=60
RATE_LIMIT_WINDOW=60
RATE_LIMIT_AUTH=10
RATE_LIMIT_AUTH_WINDOW=300
RATE_LIMIT_API=30
RATE_LIMIT_API_WINDOW=60
# N+1 Detection Machine Learning Konfiguration
NPLUSONE_ML_ENABLED=true
NPLUSONE_ML_TIMEOUT_MS=5000
NPLUSONE_ML_CONFIDENCE_THRESHOLD=60.0
# OAuth Provider Konfiguration
APP_URL=https://localhost
# Spotify OAuth
SPOTIFY_CLIENT_ID=your_spotify_client_id
SPOTIFY_CLIENT_SECRET=your_spotify_client_secret
SPOTIFY_REDIRECT_URI=https://localhost/oauth/spotify/callback
# Apple Music OAuth
APPLE_MUSIC_CLIENT_ID=your_apple_music_client_id
APPLE_MUSIC_TEAM_ID=your_apple_music_team_id
APPLE_MUSIC_KEY_ID=your_apple_music_key_id
APPLE_MUSIC_PRIVATE_KEY=your_apple_music_private_key_path_or_content
APPLE_MUSIC_REDIRECT_URI=https://localhost/oauth/apple-music/callback
# Tidal OAuth
TIDAL_CLIENT_ID=your_tidal_client_id
TIDAL_CLIENT_SECRET=your_tidal_client_secret
TIDAL_REDIRECT_URI=https://localhost/oauth/tidal/callback
# Vault Configuration
# Generate with: php console.php vault:generate-key
# VAULT_ENCRYPTION_KEY=base64_encoded_key_here
# Filesystem Performance (caching enabled by default)
# Set to true only for debugging performance issues
# FILESYSTEM_DISABLE_CACHE=false