mirror of
https://github.com/ChrisSewell/LeosShoes.git
synced 2025-07-01 18:17:26 -04:00
38 lines
999 B
Plaintext
38 lines
999 B
Plaintext
# Paw Burn Risk Assessment - Environment Variables Template
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# WeatherAPI.com API Key (Required)
|
|
# Sign up at https://www.weatherapi.com/ to get a free API key
|
|
WEATHER_API_KEY=your_weatherapi_key_here
|
|
|
|
# Default location for weather data (Optional)
|
|
# Can be city name, zip code, or coordinates
|
|
DEFAULT_LOCATION=New York
|
|
|
|
# Database file path (Optional)
|
|
DATABASE_PATH=paw_risk.db
|
|
|
|
# Temperature thresholds in Fahrenheit (Optional)
|
|
TEMP_THRESHOLD_LOW=75
|
|
TEMP_THRESHOLD_MED=85
|
|
TEMP_THRESHOLD_HIGH=95
|
|
|
|
# UV Index thresholds (Optional)
|
|
UV_THRESHOLD_LOW=5
|
|
UV_THRESHOLD_MED=7.5
|
|
UV_THRESHOLD_HIGH=9
|
|
|
|
# Risk assessment parameters (Optional)
|
|
RISK_THRESHOLD_SHOES=5
|
|
ROLLING_WINDOW_HOURS=2
|
|
SURFACE_RECOVERY_HOURS=2
|
|
|
|
# Surface recovery enhancements (Optional)
|
|
SURFACE_RECOVERY_TEMP_THRESHOLD=90
|
|
SURFACE_TYPE=asphalt
|
|
SURFACE_MAX_RECOVERY_SCORE=2.0
|
|
ENABLE_GRADUATED_RECOVERY=true
|
|
ENABLE_TIME_OF_DAY_FACTOR=true
|
|
|
|
# Display preferences (Optional)
|
|
USE_24HR_TIME=false |