-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappsettings.json
40 lines (34 loc) · 1.33 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
38
39
40
{
"AzureSearch": {
// Azure Cognitive Search configuration
"ServiceUrl": "https://[SERVICENAME].search.windows.net",
"AdminApiKey": "[ADMINAPIKEY]",
"IndexName": "[INDEXNAME]"
},
"GitHub": {
// GitHub API token with public_repo scope
"Token": "",
"BucketsSearchQueries": [
[ "topic:scoop-bucket" ],
// Split search queries as GitHub search API returns at most 1000 results
[ "scoop-bucket", "created:>2023-01-01" ],
[ "scoop+bucket", "created:>2023-01-01" ],
[ "scoop-bucket", "created:2020-01-01..2023-01-01" ],
[ "scoop+bucket", "created:2020-01-01..2023-01-01" ],
[ "scoop-bucket", "created:<2020-01-01" ],
[ "scoop+bucket", "created:<2020-01-01" ]
]
},
"Buckets": {
"OfficialBucketsListUrl": "https://raw.githubusercontent.com/ScoopInstaller/Scoop/master/buckets.json",
"ManualBucketsListUrl": "https://raw.githubusercontent.com/rasa/scoop-directory/master/include.txt",
"IgnoredBuckets": [
// No manifests inside
"https://github.com/lukesampson/scoop",
"https://github.com/frostming/scoop-action",
"https://github.com/rasa/scoop-directory"
],
"ManualBuckets": [
]
}
}