forked from finos/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
129 lines (128 loc) · 4.64 KB
/
sidebars.js
File metadata and controls
129 lines (128 loc) · 4.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
module.exports = {
mainSidebar: {
'OSS Journey': [
"journey/learn",
"journey/consume",
"journey/engage",
"journey/participate",
"journey/lead",
],
'FINOS Governance': [
"governance/intro",
{
type: 'category',
label: 'Corporate Governance',
items: [
"governance/funding-documents",
"governance/board-election",
"governance/code-of-conduct",
"governance/individual-supporter-program",
"governance/project-branding-guidelines"
]
},
{
type: 'category',
label: 'Project Lifecycle',
items: [
"governance/project-lifecycle",
"governance/lifecycle-stages/forming",
"governance/lifecycle-stages/labs",
"governance/lifecycle-stages/incubating",
"governance/lifecycle-stages/graduated",
"governance/lifecycle-stages/archived",
]
},
{
type: 'category',
label: 'Software Project Governance',
items: [
{
type: "link",
label: "Intro",
href:"/docs/governance/#open-source-software-projects"
},
"governance/Software-Projects/contribution",
"governance/Software-Projects/code-transfer",
"governance/Software-Projects/contribution-compliance-requirements",
"governance/Software-Projects/easycla",
"governance/Software-Projects/license-categories",
"governance/Software-Projects/cve-responsible-disclosure",
]
},
{
type: "link",
label: "Standard Projects Governance",
href:"/docs/governance/#open-standard-projects"
},
"governance/special-interest-groups/intro",
"governance/meeting-procedures"
],
'Project Collaboration': [
{
type: 'category',
label: 'Basics',
items: [
"governance/collaborative-principles",
"collaboration-infrastructure",
"development-infrastructure/project-documentation",
"finos-contributors-cheatsheet",
"finos-maintainers-cheatsheet",
]
},
{
type: 'category',
label: 'Tooling',
items: [
{
type: 'category',
label: 'CI/CD',
items: [
"development-infrastructure/continuous-integration/intro",
"development-infrastructure/continuous-integration/clojure",
"development-infrastructure/continuous-integration/csharp",
"development-infrastructure/continuous-integration/java",
"development-infrastructure/continuous-integration/javascript",
"development-infrastructure/continuous-integration/python",
"development-infrastructure/continuous-integration/docker",
"development-infrastructure/continuous-delivery"
]
},
{
type: 'category',
label: 'Code Validations',
items: [
"development-infrastructure/code-validation/intro",
"development-infrastructure/code-validation/codeclimate",
"development-infrastructure/code-validation/coverityscan",
"development-infrastructure/code-validation/sonarcloud",
"development-infrastructure/code-validation/sonatype",
"development-infrastructure/code-validation/whitesource",
]
}
]
},
{
type: 'doc',
id: 'project-sandbox'
}
],
'Grow Your Project Community':[
"growing-your-project-community/meetups/finos-meetups",
{
type: 'category',
label: 'Best Practices',
items: [
"growing-your-project-community/finos-community-strategy/leveraging-finos-projects-sigs",
"growing-your-project-community/finos-community-strategy/finos-community-2022-strategic-overview",
"growing-your-project-community/finos-community-strategy/communicate-why-and-how",
"growing-your-project-community/finos-community-strategy/provide-an-amazing-engineering-experience",
"growing-your-project-community/finos-community-strategy/coordinate-work",
"growing-your-project-community/finos-community-strategy/create-an-open-profile",
"growing-your-project-community/finos-community-strategy/measure-finos-project-and-sig-success",
"growing-your-project-community/finos-community-strategy/recognise-community-achievements",
"growing-your-project-community/finos-community-strategy/ensure-finos-project-security",
]
},
]
}
}