MagicMirror/tests/configs/modules/weather/forecastweather_units.js
Karsten Hassel bbb3accf0c use factory
2021-07-05 19:45:58 +02:00

31 lines
564 B
JavaScript

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