/* MagicMirror² Test config default calendar * with authentication old config * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. */ let config = { timeFormat: 12, modules: [ { module: "calendar", position: "bottom_bar", config: { calendars: [ { maximumNumberOfDays: 10000, url: "http://localhost:8080/tests/mocks/calendar_test.ics", user: "MagicMirror", pass: "CallMeADog" } ] } } ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") { module.exports = config; }