21 lines
510 B
Plaintext
21 lines
510 B
Plaintext
# Flightradar24 API Configuration
|
|
# Copy this file to .env and fill in your actual API key
|
|
|
|
# Your Flightradar24 API key (Explorer subscription)
|
|
FLIGHTRADAR24_API_KEY=your_api_key_here
|
|
|
|
# Database configuration (SQLite by default)
|
|
DATABASE_URL=sqlite:///./data/flights.db
|
|
|
|
# Cache configuration
|
|
CACHE_ENABLED=true
|
|
CACHE_TTL_DAYS=7
|
|
|
|
# Data collection settings
|
|
TARGET_REGION="Московская область"
|
|
TARGET_PERIOD_MONTHS=12
|
|
UPDATE_FREQUENCY="weekly"
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
LOG_FILE=./data/app.log |