25 lines
685 B
Plaintext
25 lines
685 B
Plaintext
# Calendar Configuration
|
|
CALENDAR_URL=https://outlook.live.com/owa/calendar/ef9138c2-c803-4689-a53e-fe7d0cb90124/d12c4ed3-dfa2-461f-bcd8-9442bea1903b/cid-CD3289D19EBD3DA4/calendar.ics
|
|
|
|
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
|
|
# Timezone (e.g., Europe/Berlin, America/New_York, UTC)
|
|
TIMEZONE=Europe/Berlin
|
|
|
|
# Update Schedule (in hours)
|
|
UPDATE_INTERVAL=4
|
|
|
|
# Cache Settings
|
|
CACHE_FILE=calendar_cache.json
|
|
|
|
# Display Settings
|
|
DAYS_TO_SHOW=30
|
|
|
|
# Optional: Basic Auth (uncomment to enable)
|
|
# BASIC_AUTH_USERNAME=admin
|
|
# BASIC_AUTH_PASSWORD=secure_password
|
|
|
|
# Optional: CORS Settings (for API access from other domains)
|
|
# CORS_ORIGINS=["http://localhost:3000", "https://yourdomain.com"] |