MagicMirror² Module to add the birthday of contacts to the default calendar module.
{
module: 'MMM-vCard2Calendar',
config: {
url: '<link to vCard>',
auth: { // basic authentication for request
user: '<user>',
password: '<password>'
}
}
},
{
module: 'calendar',
position: 'top_left',
config: {
calendars: {
symbol: 'birthday-cake',
url: 'http://localhost:8080/MMM-vCard2Calendar' //This url is fixed
}
}
}
- Clone this repository in your MagicMirror installation into the folder modules.
- Install dependencies in main MagicMirror folder
- Add a config like above
Option | Description |
---|---|
url |
vCard source url (required) |
auth |
Basic authentication credentials (optional) |
Option | Description |
---|---|
user |
Username for basic HTTP authentication |
pass |
Password for basic HTTP authentication |
- Only one vCard url is supported.