-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmission.sample.json
46 lines (37 loc) · 1.42 KB
/
mission.sample.json
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
{
"tasks": [
{ "slug": "mail", "name": "Mail", "scheduled": true, "type": "exec" },
{ "slug": "contacts", "name": "Contacts", "scheduled": true, "type": "exec" },
{ "slug": "calendar", "name": "Calendar", "scheduled": true, "type": "exec" },
{ "slug": "spotify", "name": "Spotify", "scheduled": true, "type": "builtin" },
{ "slug": "filesystem", "name": "Filesystem", "scheduled": true, "type": "exec", "post": true }
],
"user": {
"name": "anon",
"email": "[email protected]"
},
"passBin": "~/bin/pass",
"storage": {
"tasks": { "path": "~/backup/tasks", "chown": false, "commit": false },
"logs": { "path": "~/backup/logs", "chown": true, "commit": false },
"sync": { "path": "~/sync/backup", "chown": true, "commit": true },
"local": { "path": "~/backup/files", "chown": true, "commit": true },
"helpers": { "path": "~/backup/helpers", "chown": false, "commit": false },
"sessions": { "path": "~/.cache/sessions", "chown": false, "commit": false }
},
"ping": {
"enabled": true,
"endpoint": "http://localhost:1337/%s"
},
"notify": {
"enabled": true
},
"mail": {
"enabled": true,
"type": "sendmail"
},
"filters": [
" Incrementing mirror file .+",
" Processing changed file .+"
]
}