-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.dist.json
56 lines (56 loc) · 1.41 KB
/
config.dist.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
47
48
49
50
51
52
53
54
55
56
{
"port": 8080,
"redmine": {
"server": "http://127.0.0.1:3000",
"api_key": "",
"api_key_comment": "You can find your API key on your account page ( /my/account ) when logged in, on the right-hand pane of the default layout.",
"customSprintNumberFieldId": 3,
"customStoryPointsFieldId": 1,
"columns": {
"new": {
"abbr": "new",
"name": "New",
"statuses": [
"New",
"Accepted",
"Feedback provided"
]
},
"feedback": {
"abbr": "feedback",
"name": "Feedback Needed",
"statuses": [
"Feedback needed",
"Reopened",
"On hold"
]
},
"progress": {
"abbr": "progress",
"name": "In Progress",
"statuses": [
"In Progress"
]
},
"test": {
"abbr": "test",
"name": "To Test/Review",
"statuses": [
"To test"
]
},
"done": {
"abbr": "done",
"name": "To Deploy/Done",
"statuses": [
"To deploy",
"Closed"
]
}
},
"userDisplay": "One of 'firstname_lastname', 'firstname_lastinitial', 'firstinitial_lastname', 'firstname', 'lastname_firstname', 'lastnamefirstname', 'lastname_comma_firstname', 'lastname', 'username'"
},
"pollingCycleInSeconds": 10,
"velocityHistoryLength": 10,
"sprintDurationInDays": 14
}