-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
150 lines (146 loc) · 6.12 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* MagicMirror² Config Sample
*
* By Michael Teeuw https://michaelteeuw.nl
* MIT Licensed.
*
* For more information on how you can configure this file
* see https://docs.magicmirror.builders/configuration/introduction.html
* and https://docs.magicmirror.builders/modules/configuration.html
*/
let config = {
address: "localhost", // Address to listen on, can be:
// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
// - another specific IPv4/6 to listen on a specific interface
// - "0.0.0.0", "::" to listen on any interface
// Default, when address config is left out or empty, is "localhost"
port: 8080,
basePath: "/", // The URL path where MagicMirror² is hosted. If you are using a Reverse proxy
// you must set the sub path here. basePath must end with a /
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
useHttps: false, // Support HTTPS or not, default "false" will use HTTP
httpsPrivateKey: "", // HTTPS private key path, only require when useHttps is true
httpsCertificate: "", // HTTPS Certificate path, only require when useHttps is true
language: "en",
locale: "en-US",
logLevel: ["INFO", "LOG", "WARN", "ERROR"], // Add "DEBUG" for even more logging
timeFormat: 12,
units: "imperial",
// serverOnly: true/false/"local" ,
// local for armv6l processors, default
// starts serveronly and then starts chrome browser
// false, default for all NON-armv6l devices
// true, force serveronly mode, because you want to.. no UI on this device
modules: [
{
module: "alert",
},
{
module: "clock",
position: "top_right"
},
{
module: 'MMM-CalendarExt2',
config: {
roatateInterval: 0,
updateInterval: 1000*60*15,
calendars : [
{
url: "MyFamilyCalendarURL",
},
{
url: "https://www.google.com/calendar/ical/en.usa%[email protected]/public/basic.ics",
},
],
views: [
{
name: "view1",
mode: "month",
maxItems: 1000,
hideOverflow: false,
slotMaxHeight: 100px, //100px works great for months that show 5 weeks on the screen - use 90px when a month flows over into a 6th week
monthFormat: "MMMM YYYY",
timeFormat: "h:mm A",
position: "top_left",
},
],
scenes: [
{
name: "DEFAULT",
},
],
},
},
{
module: "weather",
position: "top_right",
header: "Current Weather for",
config: {
weatherProvider: "weathergov",
showHumidity: true,
apiBase: 'https://api.weather.gov/points/',
type: "current",
lat: 43.0077,
lon: -85.7777,
}
},
{
module: "weather",
position: "top_right",
header: "Weather Forecast for",
config: {
weatherProvider: "weathergov",
colored: false,
fade: false,
ignoreToday: true,
location: "Walker, MI",
apiBase: 'https://api.weather.gov/points/',
lat: 43.0077,
lon: -85.7777,
type: "forecast",
}
},
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "New York Times",
url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"
},
{
title: "NPR",
url: "https://feeds.npr.org/1001/rss.xml"
},
{
title: "WOOD TV 8",
url: "https://www.woodtv.com/feed/"
},
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true,
ignoreOldItems: true,
ignoreOlderThan: 604800000
}
},
{
module: 'MMM-MicrosoftToDo',
position: 'top_right', // This can be any of the regions. Best results in left or right regions.
header: 'groceries', // This is optional
config: {
oauth2ClientSecret: 'YourSecretID',
oauth2RefreshToken: 'yourRefreshToken',
oauth2ClientId: 'yourClientID',
listName: 'groceries', // optional parameter: if not specified displays tasks from default "Tasks" list, if specified will look for a task list with the specified name (exact spelling), don't specify if you want to make use of the> refreshSeconds: 60, // optional parameter: every how many seconds should the list be updated from the remote service, default value is 60
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}