config.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: "alert",
  15. },
  16. {
  17. module: "updatenotification",
  18. position: "top_bar"
  19. },
  20. {
  21. module: 'MMM-Carousel',
  22. position: 'bottom_bar',
  23. config: {
  24. transitionInterval: 22000,
  25. showPageIndicators: true,
  26. showPageControls: false,
  27. ignoreModules: ["MMM-BurnIn"],
  28. mode: 'slides',
  29. slides: {
  30. "Main": [
  31. { name: 'clock', position: "top_left", carouselId: "1" }
  32. ]
  33. }
  34. }
  35. },
  36. {
  37. module: "clock",
  38. position: "top_left",
  39. config: {
  40. carouselId: '1',
  41. timeFormat: 24,
  42. }
  43. },
  44. {
  45. module: "MMM-BurnIn",
  46. position: "bottom_bar",
  47. config: {
  48. updateInterval: 15,
  49. invertDuration: 5
  50. }
  51. }
  52. ]
  53. };
  54. /*************** DO NOT EDIT THE LINE BELOW ***************/
  55. if (typeof module !== "undefined") { module.exports = config; }