| 12345678910111213141516171819202122232425262728293031323334353637 |
- let config = {
- address: "0.0.0.0",
- port: 8080,
- basePath: "/",
- ipWhitelist: [],
- useHttps: false,
- language: "de",
- locale: "de-DE",
- logLevel: ["INFO", "LOG", "WARN", "ERROR"],
- timeFormat: 24,
- units: "metric",
- modules: [
- {
- module: 'MMM-MyWeather',
- position: 'top_right',
- config: {
- apikey: '7f8378788aee47dfad655c9adbb967a4',
- lat: "49.86",
- lon: "8.35",
- hourly: '3',
- fctext: '1',
- fcdaycount: "5",
- fcdaystart: "0",
- hourlyinterval: "3",
- hourlycount: "2",
- alerttime: 10000,
- alerttruncatestring: "english:",
- roundTmpDecs: 1,
- UseCardinals: 0,
- layout: "horizontal"
- }
- }
- ]
- }
- /*************** DO NOT EDIT THE LINE BELOW ***************/
- if (typeof module !== "undefined") { module.exports = config; }
|