# SportsPulse Environment Configuration Template
# Copy this file to .env and fill in your values

# ============================================
# DATABASE CONFIGURATION
# ============================================
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=sportspulse_local
DB_USERNAME=root
DB_PASSWORD=
DB_DEBUG=true

# ============================================
# API KEYS
# ============================================

# API-Football (Primary Provider) - DISABLED FOR NOW
# Get your key from: https://rapidapi.com/api-sports/api/api-football
# API_FOOTBALL_KEY=4f356bfdfff6ae4380a863295e563e37

# TheSportsDB (Primary Provider - FREE)
# Free tier available: https://www.thesportsdb.com/api.php
THESPORTSDB_KEY=123

# Football-Data.org (Primary Provider - FREE)
# Get your free key from: https://www.football-data.org/
FOOTBALL_DATA_KEY=05c29ff31c964e2cbce899825c06ce42

# ============================================
# APPLICATION SETTINGS
# ============================================
APP_ENV=development
APP_DEBUG=true
APP_URL=http://localhost:8000
APP_TIMEZONE=UTC

# ============================================
# CACHE SETTINGS
# ============================================
CACHE_ENABLED=true
CACHE_DEFAULT_TTL=300
CACHE_LIVE_TTL=30

# ============================================
# LOGGING
# ============================================
LOG_LEVEL=debug
LOG_PATH=./storage/logs
