-
Notifications
You must be signed in to change notification settings - Fork 1
/
board-config.sample.js
34 lines (32 loc) · 1.18 KB
/
board-config.sample.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
config = {
"title" : "myCraftedBoard", // title of the board
"refresh" : 300, // [optional] delay in seconds for auto-refresh of the page. Disabled if 0
"user" : {
"name" : "John Doe", // name of the board user (person or group)
"avatar" : "", // [optional] url of a local or remote avatar (e.g. Gravatar)
"initials" : "JD" // [optional] initials of the user. Not displayed if an avatar is provided
},
"duedate" : {
"warning" : 4, // number of days before the due date to mark it as "warning"
"danger" : 2, // number of days before the due date to mark it as "danger"
"format" : "DD-MM" // format to apply to date display
},
"tags" : { // definitions of tags that can be referenced in the tasks using their key (e.g. projectx, team, dev, ...)
"projectx" : {
"color" : "#54697E", // color of the tag
"text" : "Project X" // displayed text when the tag is used
},
"team" : {
"color" : "linear-gradient(to right,darkgreen,blue)",
"text" : "My Team"
},
"dev" : {
"color" : "dodgerblue",
"text" : "Development 🤘"
},
"personal" : {
"color" : "magenta",
"text" : "Personal"
}
}
}