26 lines
680 B
Bash
26 lines
680 B
Bash
# how many events per week will result in an perfect event score (float)
|
|
FREQUENCY_TARGET_WEEKLY=
|
|
# how many different people per month will result in an perfect diversity score (float)
|
|
DIVERSITY_TARGET_MONTHLY=
|
|
|
|
# full path to one carddav addressbook
|
|
CARDDAV_URL=https://
|
|
|
|
CARDDAV_USER=
|
|
CARDDAV_PASSWORD=
|
|
|
|
# adding this to a contacts "notes" section excludes them
|
|
CARDDAV_IGNORE_STR=<ignore>
|
|
|
|
# full path to one specific calendar
|
|
CALDAV_URL=https://
|
|
|
|
CALDAV_USER=
|
|
CALDAV_PASSWORD=
|
|
|
|
# prefix to mark event participants in calendar event description like "@max mustermann\n"
|
|
CALDAV_PARTICIPANT_PREFIX=@
|
|
|
|
# delay between attempts to sync data from servers (int)
|
|
REFETCH_SECONDS=300
|