-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
37 lines (37 loc) · 737 Bytes
/
config.json
File metadata and controls
37 lines (37 loc) · 737 Bytes
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
{
"smtp": {
"server": "smtp.gmail.com",
"port": 587,
"username": "you@gmail.com",
"password": "YOUR_APP_PASSWORD"
},
"email": {
"from": "you@gmail.com",
"to": [
"you@gmail.com"
]
},
"weather": {
"api_key": "YOUR_OPENWEATHER_API_KEY",
"lat": 38.3,
"lon": -76.54,
"units": "imperial"
},
"calendar": {
"ics_urls": [
"https://example.com/your_icloud_calendar.ics"
]
},
"reminders": {
"json_path": "C:\\Users\\YOURNAME\\iCloudDrive\\Shortcuts\\daily_reminders.json"
},
"quote": {
"source": "zenquotes"
},
"digest": {
"days_ahead": 1,
"send_empty": true,
"time_zone": "America/New_York",
"subject_prefix": "[Daily Digest]"
}
}