MagicMirror/tests/configs/modules/weather/forecastweather_absolute.js

26 lines
482 B
JavaScript
Raw Normal View History

2022-01-07 21:32:12 +01:00
let config = {
address: "0.0.0.0",
ipWhitelist: [],
2022-01-07 21:32:12 +01:00
timeFormat: 12,
modules: [
{
module: "weather",
position: "bottom_bar",
config: {
type: "forecast",
location: "Munich",
weatherProvider: "openweathermap",
2022-01-07 21:32:12 +01:00
weatherEndpoint: "/forecast/daily",
mockData: '"#####WEATHERDATA#####"',
2022-01-07 21:32:12 +01:00
absoluteDates: true
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}