2017-04-03 11:47:22 -03:00
|
|
|
/* Magic Mirror Test config for default compliments
|
2017-02-05 19:35:33 -03:00
|
|
|
*
|
|
|
|
* 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: {
|
|
|
|
nodeIntegration: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "compliments",
|
|
|
|
position: "middle_center",
|
|
|
|
config: {
|
|
|
|
compliments: {
|
|
|
|
morning: [
|
2017-02-07 16:00:35 -03:00
|
|
|
"Hi", "Good Morning", "Morning test"
|
2017-02-05 19:35:33 -03:00
|
|
|
],
|
|
|
|
afternoon: [
|
2017-02-07 16:00:35 -03:00
|
|
|
"Hello", "Good Afternoon", "Afternoon test"
|
2017-02-05 19:35:33 -03:00
|
|
|
],
|
|
|
|
evening: [
|
2017-02-07 16:00:35 -03:00
|
|
|
"Hello There", "Good Evening", "Evening test"
|
2017-02-05 19:35:33 -03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {module.exports = config;}
|