-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
39 lines (36 loc) · 1.4 KB
/
appsettings.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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"info": {
"values": [
{
"indexNumber" : "1", //do not change this
"isGithubRepo": "1", //if you want to use github enter "1", or "0" for azure devops
"isUserRepo": "1", //if you want to use user account enter "1", or "0" for organization
"user/organization": "leventyil", //enter username or organization name
"token": "" //enter Public Access Token with "repo" permissions
},
{
"indexNumber": "2", //do not change this
"isGithubRepo": "1", //if you want to use github enter "1", or "0" for azure devops
"isUserRepo": "0", //if you want to use user account enter "1", or "0" for organization
"user/organization": "", //enter username or organization name
"token": "" //enter Public Access Token with "repo" permissions
},
{
"indexNumber": "3", //do not change this
"isGithubRepo": "0", //if you want to use github enter "1", or "0" for azure devops
"isUserRepo": "0", //useless for azure DevOps
"user/organization": "leventyil", //enter organization name
"project": "projects", //enter project name
"token": "" //enter Public Access Token with "Code" permissions
}
]
}
}