-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
47 lines (47 loc) · 989 Bytes
/
config.example.json
File metadata and controls
47 lines (47 loc) · 989 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
38
39
40
41
42
43
44
45
46
47
{
"server": {
"host": "127.0.0.1",
"port": 4500
},
"github": {
"trackedRepos": [
"YourOrg/repo-one",
"YourOrg/repo-two",
"yourusername/personal-repo"
],
"orgs": [
{
"owner": "YourOrg",
"repoLimit": 200
},
{
"owner": "yourusername",
"repoLimit": 100,
"includeRepos": [
"personal-repo"
]
}
]
},
"obsidian": {
"vaultDir": "/path/to/your/obsidian/vault",
"dailyDir": "/path/to/your/obsidian/vault/03 - Periodic/01 - Daily",
"decisionsDir": "/path/to/your/obsidian/vault/08 - Projects/DamageLabs/Decisions",
"tasksDir": "/path/to/your/tasks/folder",
"taskFiles": [
{
"file": "Tasks.md",
"label": "General",
"color": "amber"
},
{
"file": "Work Tasks.md",
"label": "Work",
"color": "blue"
}
]
},
"standup": {
"dir": "${HOME}/Code/brain/standups/daily"
}
}