# Flask Configuration FLASK_SECRET_KEY=calendar-display-secret-key-change-this # OpenWeatherMap API # Get your free API key from: https://openweathermap.org/api OPENWEATHER_API_KEY=your_openweather_api_key_here # Weather Location # Find coordinates at: https://www.latlong.net/ WEATHER_LOCATION=YourCity,CountryCode WEATHER_LAT=0.0000 WEATHER_LON=0.0000 # Google Calendar # Option 1: Use public iCal URL (easiest - no authentication needed) # Get from: Google Calendar Settings > Calendar > Integrate Calendar > Public URL to this calendar (iCal format) GOOGLE_CALENDAR_ID=your_calendar_id@group.calendar.google.com GOOGLE_CALENDAR_ICAL_URL=https://calendar.google.com/calendar/ical/your_calendar_id%40group.calendar.google.com/public/basic.ics # Update Intervals (seconds) IMAGE_ROTATION_INTERVAL=60 WEATHER_UPDATE_INTERVAL=900 CALENDAR_UPDATE_INTERVAL=300 JOKE_UPDATE_INTERVAL=3600 CALENDAR_DAYS_AHEAD=5