| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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: "alert",
- },
- {
- module: "updatenotification",
- position: "top_bar"
- },
- {
- module: 'MMM-Carousel',
- position: 'bottom_bar',
- config: {
- transitionInterval: 22000,
- showPageIndicators: true,
- showPageControls: false,
- ignoreModules: ["MMM-BurnIn"],
- mode: 'slides',
- slides: {
- "Main": [
- { name: 'clock', position: "top_left", carouselId: "1" }
- ]
- }
- }
- },
- {
- module: "clock",
- position: "top_left",
- config: {
- carouselId: '1',
- timeFormat: 24,
- }
- },
- {
- module: "MMM-BurnIn",
- position: "bottom_bar",
- config: {
- updateInterval: 15,
- invertDuration: 5
- }
- }
- ]
- };
- /*************** DO NOT EDIT THE LINE BELOW ***************/
- if (typeof module !== "undefined") { module.exports = config; }
|