-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.template.json
More file actions
52 lines (52 loc) · 1.34 KB
/
config.template.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
{
"repositories": [
{
"name": "frontend-app",
"url": "https://github.com/yourorg/frontend-app",
"description": "Main frontend application",
"project": "MainProject"
},
{
"name": "backend-api",
"url": "https://github.com/yourorg/backend-api",
"description": "Backend API service",
"project": "MainProject"
},
{
"name": "smart-contracts",
"url": "https://github.com/yourorg/smart-contracts",
"description": "Blockchain smart contracts",
"project": "Blockchain"
},
{
"name": "validator-tools",
"url": "https://github.com/yourorg/validator-tools",
"description": "Validator setup and monitoring tools",
"project": "Infrastructure"
},
{
"name": "documentation",
"url": "https://github.com/yourorg/documentation",
"description": "Project documentation and guides",
"project": "Documentation"
}
],
"default_filters": {
"since": "2021-01-01",
"until": "2025-12-31",
"author": null,
"branch": null
},
"selected_authors": [
"developer1",
"developer2",
"team-lead",
"DevOps Engineer",
"contributor-name"
],
"output_settings": {
"default_format": "csv",
"include_summary": true,
"parallel_workers": 4
}
}