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

36 lines
643 B
JavaScript

/* Magic Mirror Test config current weather compliments
*
* By rejas https://github.com/rejas
* MIT Licensed.
*/
const configFactory = require("../../default.js");
const config = configFacory({
modules: [
{
module: "compliments",
position: "top_bar",
config: {
compliments: {
snow: ["snow"]
},
updateInterval: 4000
}
},
{
module: "weather",
position: "bottom_bar",
config: {
location: "Munich",
apiKey: "fake key",
initialLoadDelay: 3000
}
}
]
});
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}