BREAKING CHANGE: Requires PHP 8.5.0RC3 Changes: - Update Docker base image from php:8.4-fpm to php:8.5.0RC3-fpm - Enable ext-uri for native WHATWG URL parsing support - Update composer.json PHP requirement from ^8.4 to ^8.5 - Add ext-uri as required extension in composer.json - Move URL classes from Url.php85/ to Url/ directory (now compatible) - Remove temporary PHP 8.4 compatibility workarounds Benefits: - Native URL parsing with Uri\WhatWg\Url class - Better performance for URL operations - Future-proof with latest PHP features - Eliminates PHP version compatibility issues
113 lines
3.3 KiB
Plaintext
113 lines
3.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
|
|
|
|
# ML Model Management Configuration (optional - defaults in MLConfig class)
|
|
# ML_MONITORING_ENABLED=true
|
|
# ML_DRIFT_THRESHOLD=0.15
|
|
# ML_PERFORMANCE_WINDOW_HOURS=24
|
|
# ML_AUTO_TUNING_ENABLED=false
|
|
# ML_PREDICTION_CACHE_TTL=3600
|
|
# ML_MODEL_CACHE_TTL=7200
|
|
# ML_BASELINE_UPDATE_INTERVAL=86400
|
|
# ML_MIN_PREDICTIONS_FOR_DRIFT=100
|
|
# ML_CONFIDENCE_ALERT_THRESHOLD=0.65
|
|
# ML_ACCURACY_ALERT_THRESHOLD=0.75
|
|
|
|
# WhatsApp Business API Configuration
|
|
# SECURITY: Replace with your actual WhatsApp Business API credentials
|
|
# Get credentials from: https://business.facebook.com/settings/whatsapp-business-accounts
|
|
WHATSAPP_ACCESS_TOKEN=your_whatsapp_access_token_here
|
|
WHATSAPP_PHONE_NUMBER_ID=107051338692505
|
|
WHATSAPP_BUSINESS_ACCOUNT_ID=your_business_account_id_here
|
|
WHATSAPP_API_VERSION=v18.0
|
|
# Gitea Configuration (for Git-based deployment)
|
|
# SECURITY: Replace with your actual Gitea credentials
|
|
GITEA_URL=https://localhost:9443
|
|
GITEA_USERNAME=michael
|
|
GITEA_PASSWORD=GiteaAdmin2024
|