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

31 lines
632 B
JavaScript
Raw Normal View History

2019-09-13 16:21:12 +02:00
/* Magic Mirror Test config default weather
*
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
2021-07-05 19:57:04 +02:00
const config = require("../../default.js").configFactory({
timeFormat: 12,
2019-09-13 16:21:12 +02:00
modules: [
{
module: "weather",
position: "bottom_bar",
config: {
type: "forecast",
location: "Munich",
apiKey: "fake key",
weatherEndpoint: "/forecast/daily",
initialLoadDelay: 3000,
showPrecipitationAmount: true,
colored: true,
tableClass: "myTableClass"
}
}
]
2021-07-05 19:45:58 +02:00
});
2021-07-05 00:33:50 +02:00
2019-09-13 16:21:12 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}