Bug fixes (non-breaking): - Register accept-event tool in calendar module (was dead code) - Add missing callGraphAPI + ensureAuthenticated imports to rules/index.js (edit-rule-sequence would throw ReferenceError at runtime) - Make calendar event timezone configurable via MS_TIMEZONE env var (was hardcoded to UTC; default is now Eastern Standard Time) Version bump: 1.0.0 → 1.0.1 README updated: 21 tools, MS_TIMEZONE in config table, known issues pruned
18 lines
704 B
Text
18 lines
704 B
Text
# Microsoft Azure App Registration
|
|
# Required: your app registration client ID
|
|
MS_CLIENT_ID=your_client_id_here
|
|
|
|
# Optional: only needed for confidential client app registrations (client secret app regs).
|
|
# Leave blank or omit for public client apps (device code flow with "Allow public client flows" enabled).
|
|
# MS_CLIENT_SECRET=
|
|
|
|
# Optional: Enable test mode (uses mock data instead of real API calls)
|
|
USE_TEST_MODE=false
|
|
|
|
# Optional: Enable verbose debug logging
|
|
DEBUG_MODE=false
|
|
|
|
# Optional: Default timezone for calendar event creation (IANA tz name).
|
|
# Examples: 'America/New_York', 'Europe/London', 'Australia/Sydney'
|
|
# Defaults to Eastern Standard Time if not set.
|
|
# MS_TIMEZONE=America/New_York
|