personal-dash-cl/claudash/.env.example
2026-02-14 00:45:59 -05:00

34 lines
1.3 KiB
Text

# REQUIRED: Anthropic API Key
REACT_APP_ANTHROPIC_API_KEY=sk-ant-your-key-here
# Data sources (comma-separated URLs)
# Supports: .json (auto-parsed), .rss/.xml (RSS feeds), plain URLs (scraped)
REACT_APP_DATA_SOURCES=https://www.reddit.com/r/technology.json,https://hacker-news.firebaseio.com/v0/topstories.json,https://www.reddit.com/r/worldnews.json
# Location for weather (supports "city, state, country" or zip code)
REACT_APP_LOCATION=harrisburg, pa, usa
# Optional: Temperature unit for weather ('F' for Fahrenheit, 'C' for Celsius, default: F)
REACT_APP_TEMPERATURE_UNIT=F
# Optional: Custom CORS proxy (default: allorigins.win)
REACT_APP_CORS_PROXY=https://api.allorigins.win/raw?url=
# Optional: Refresh interval in minutes (default: 15)
REACT_APP_REFRESH_INTERVAL=15
# Optional: Days of history to keep (default: 7)
REACT_APP_HISTORY_DAYS=7
# Optional: Claude model (default: claude-sonnet-4-5-20250929)
REACT_APP_CLAUDE_MODEL=claude-3-5-sonnet-20241022
# Optional: Custom instructions for Claude (prepended to every briefing prompt)
# Example: "Focus on world news more than tech news. Use a concise and informative tone."
REACT_APP_CLAUDE_INSTRUCTIONS=
# Optional: Debug mode (shows raw data, enables dummy data)
REACT_APP_DEBUG_MODE=false
# Optional: Date format for charts (MM/DD/YYYY, DD/MM/YYYY, MM/DD, DD/MM)
REACT_APP_CHART_DATE_FORMAT=MM/DD/YYYY