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

31 lines
559 B
JavaScript
Raw Normal View History

/* Magic Mirror Test config default weather
*
2021-04-11 22:43:47 +02:00
* By rejas
* MIT Licensed.
*/
let config = {
units: "imperial",
modules: [
{
module: "weather",
position: "bottom_bar",
config: {
type: "forecast",
location: "Munich",
apiKey: "fake key",
weatherEndpoint: "/forecast/daily",
initialLoadDelay: 3000,
decimalSymbol: "_"
}
}
]
};
2021-07-05 00:33:50 +02:00
config = Object.assign(require("../../default.js"), config);
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}