Here is the full c&p from my config.js if that helps:
(just removed the link to my private calender…)
/* Magic Mirror Config Sample
*
- By Michael Teeuw http://michaelteeuw.nl
- MIT Licensed.
*/
var config = {
port: 8080,
ipWhitelist: [“127.0.0.1”, “::ffff:127.0.0.1”, “::1”], // Set [] to allow all IP addresses.
language: "de",
timeFormat: 24,
units: "metric",
modules: [
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "Termin Diana und Ingo",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check-o ",
url: ""
}
]
}
},
{
module: "compliments",
position: "lower_third"
},
{
module: "currentweather",
position: "top_right",
config: {
location: "Uedem",
locationID: "2820465", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "2d293dbaa988b5f49577db048ee2153c"
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "Uedem",
locationID: "2820465", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "2d293dbaa988b5f49577db048ee2153c"
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "RP Online",
url: "http://www.rp-online.de/feed.rss"
}
],
showSourceTitle: true,
showPublishDate: true
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== “undefined”) {module.exports = config;}