-
Notifications
You must be signed in to change notification settings - Fork 4
/
config-example.json
53 lines (53 loc) · 1.68 KB
/
config-example.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
{
"apiToken": "fake token",
"apiBaseUrl": "http://localhost:3000/api/v4",
"refreshInterval": 5000,
"autoScrollInterval": 3000,
"projects": {
"Services": [{
"displayName": "Account",
"location": "development-team/account",
"branches": ["master", "login-feature"]
}, {
"displayName": "Validation",
"location": "development-team/validation"
}, {
"displayName": "Payment",
"location": "development-team/payment"
}, {
"displayName": "Agent",
"location": "development-team/agent"
}, {
"displayName": "Scheduling",
"location": "development-team/scheduling"
}, {
"displayName": "Orchestration",
"location": "development-team/orchestration"
}],
"Front End": [{
"displayName": "Login",
"location": "development-team/login"
}, {
"displayName": "Chat",
"location": "development-team/chat"
}, {
"displayName": "Photos",
"location": "development-team/photos"
}, {
"displayName": "Notifications",
"location": "development-team/notifications"
}, {
"displayName": "Payment",
"location": "development-team/payment"
}, {
"displayName": "Products",
"location": "development-team/products"
}, {
"displayName": "Billing",
"location": "development-team/billing"
}, {
"displayName": "Should Fail",
"location": "development-team/failure"
}]
}
}