config.js 1022 B

12345678910111213141516171819202122232425262728293031323334353637
  1. let config = {
  2. address: "0.0.0.0",
  3. port: 8080,
  4. basePath: "/",
  5. ipWhitelist: [],
  6. useHttps: false,
  7. language: "de",
  8. locale: "de-DE",
  9. logLevel: ["INFO", "LOG", "WARN", "ERROR"],
  10. timeFormat: 24,
  11. units: "metric",
  12. modules: [
  13. {
  14. module: 'MMM-MyWeather',
  15. position: 'top_right',
  16. config: {
  17. apikey: '7f8378788aee47dfad655c9adbb967a4',
  18. lat: "49.86",
  19. lon: "8.35",
  20. hourly: '3',
  21. fctext: '1',
  22. fcdaycount: "5",
  23. fcdaystart: "0",
  24. hourlyinterval: "3",
  25. hourlycount: "2",
  26. alerttime: 10000,
  27. alerttruncatestring: "english:",
  28. roundTmpDecs: 1,
  29. UseCardinals: 0,
  30. layout: "horizontal"
  31. }
  32. }
  33. ]
  34. }
  35. /*************** DO NOT EDIT THE LINE BELOW ***************/
  36. if (typeof module !== "undefined") { module.exports = config; }