Files
MagicMirror/tests/configs/modules/compliments/compliments_anytime.js
T

40 lines
694 B
JavaScript
Raw Normal View History

2017-02-18 23:38:39 -03:00
/* Magic Mirror Test config compliments with anytime type
*
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
* MIT Licensed.
*/
var config = {
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],
language: "en",
timeFormat: 12,
units: "metric",
electronOptions: {
webPreferences: {
2020-05-11 22:22:32 +02:00
nodeIntegration: true
}
2017-02-18 23:38:39 -03:00
},
modules: [
{
module: "compliments",
position: "middle_center",
config: {
compliments: {
morning: [],
afternoon: [],
evening: [],
2017-02-18 23:38:39 -03:00
anytime: ["Anytime here"]
}
}
}
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
2020-05-11 22:22:32 +02:00
if (typeof module !== "undefined") {
module.exports = config;
}