2021-02-11 22:18:51 +01:00
|
|
|
/* Magic Mirror Test config default calendar with auth by default
|
|
|
|
*
|
|
|
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
2021-10-04 22:48:21 +02:00
|
|
|
let config = {
|
2021-02-11 22:18:51 +01:00
|
|
|
timeFormat: 12,
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "calendar",
|
|
|
|
position: "bottom_bar",
|
|
|
|
config: {
|
|
|
|
calendars: [
|
|
|
|
{
|
|
|
|
maximumNumberOfDays: 10000,
|
|
|
|
url: "http://localhost:8010/tests/configs/data/calendar_test.ics",
|
|
|
|
auth: {
|
|
|
|
user: "MagicMirror",
|
|
|
|
pass: "CallMeADog"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-10-04 22:48:21 +02:00
|
|
|
};
|
2021-07-05 00:33:50 +02:00
|
|
|
|
2021-02-11 22:18:51 +01:00
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = config;
|
|
|
|
}
|