add config example
1 file changed, 30 insertions(+), 0 deletions(-)
changed files
A config.toml.example
@@ -0,0 +1,30 @@ +# MyCalendar Configuration Example + +# User information +name = "John Doe" +email = "john.doe@example.com" +timezone = "Europe/London" + +# Legacy calendar configuration (for backward compatibility) +# Only one of url or file should be specified +[calendar] +url = "https://example.com/calendar.ics" +# file = "/path/to/calendar.ics" + +# Multiple calendars configuration +# You can specify as many calendars as needed + +[[calendars]] +url = "https://work.example.com/calendar.ics" +# file = "" +all_tentative = false # Default - events will be marked tentative based on their properties + +[[calendars]] +url = "https://personal.example.com/calendar.ics" +# file = "" +all_tentative = true # All events from this calendar will be marked as tentative + +[[calendars]] +# url = "" +file = "/path/to/local/calendar.ics" +all_tentative = false # Default - normal tentative event detection