Files
MagicMirror/tests/configs/modules/weather/forecastweather_default.js
2021-07-05 19:51:18 +02:00

30 lines
569 B
JavaScript

/* Magic Mirror Test config default weather
*
* By fewieden https://github.com/fewieden
* MIT Licensed.
*/
const configFactory = require("../../default.js");
const config = configFacory({
timeFormat: 12,
modules: [
{
module: "weather",
position: "bottom_bar",
config: {
type: "forecast",
location: "Munich",
apiKey: "fake key",
weatherEndpoint: "/forecast/daily",
initialLoadDelay: 3000
}
}
]
});
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}