-
Notifications
You must be signed in to change notification settings - Fork 64
/
sidebars.js
176 lines (173 loc) · 4.85 KB
/
sidebars.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
module.exports = {
docs: [
"introduction",
{
type: "category",
label: "Getting Started",
collapsed: false,
items: ["welcome/opensauced-intro", "welcome/key-metrics-guide", "welcome/glossary", "welcome/faqs"],
},
{
type: "category",
label: "Features",
collapsed: false,
items: [
"features/star-search",
"features/workspaces",
"features/repo-insights",
"features/contributor-insights",
"features/repo-pages",
"features/highlights",
"features/dev-card",
],
},
{
type: "category",
label: "Guides to OpenSauced",
collapsed: true,
items: [
{
type: "category",
label: "Job Seekers Guide",
collapsed: true,
items: [
"opensauced-guides/job-seekers-guide/job-seekers-guide-introduction",
"opensauced-guides/job-seekers-guide/how-to-translate-open-source-contributions-into-career-opportunities",
],
},
{
type: "category",
label: "Student's Guide",
collapsed: true,
items: ["opensauced-guides/students-guide/students-guide"],
},
{
type: "category",
label: "OSCR Score Guide",
collapsed: true,
items: ["opensauced-guides/oscr-score-guide/oscr-guide"],
},
],
},
{
type: "category",
label: "Maintainers Guide to OpenSauced",
collapsed: true,
items: [
"maintainers/maintainers-guide-to-open-sauced",
"maintainers/understanding-repo-insights",
"maintainers/understanding-contribs-insights",
],
},
{
type: "category",
label: "Contributors Guide to OpenSauced",
collapsed: true,
items: ["contributors/contributors-guide-to-open-sauced"],
},
{
type: "category",
label: "Community",
collapsed: true,
items: [
"community/welcome-to-the-community",
"community/100-days-of-oss",
{
type: "link",
label: "Open Source Education Path",
href: "https://opensauced.pizza/learn/#/",
},
],
},
{
type: "category",
label: "Tools",
collapsed: true,
items: [
"tools/hot-opensauced",
{
type: "category",
label: "Pizza CLI",
collapsed: true,
items: ["tools/pizza-cli/pizza-cli", "tools/pizza-cli/codeowners", "tools/pizza-cli/pizza-action"],
},
{
type: "category",
label: "Chrome Extension Usage",
collapsed: true,
items: [
"tools/chrome-extension/introduction-to-the-chrome-extension",
{
type: "category",
label: "Using the Chrome Extension",
items: [
{
type: "file",
label: "feature 3",
type: "doc",
id: "tools/chrome-extension/highlights",
},
{
type: "file",
label: "feature 6",
type: "doc",
id: "tools/chrome-extension/viewing-insights-and-invitations",
},
],
},
],
},
],
},
{
type: "category",
label: "Contributing Guide",
collapsed: true,
items: [
"contributing/introduction-to-contributing",
"contributing/code-of-conduct",
"contributing/triage-guide",
{
type: "category",
label: "OpenSauced Maintainers Guides",
collapsed: true,
items: [
"contributing/opensauced-maintainers-guide/maintainers-guide",
"contributing/opensauced-maintainers-guide/community-maintainers-guide",
],
},
"contributing/set-up-authentication",
{
type: "category",
label: "Technical Guide",
collapsed: true,
items: ["contributing/technical/setup-repo-with-git", "contributing/technical/resolve-merge-conflicts"],
},
{
type: "category",
label: "OpenSauced Writers Guides",
collapsed: true,
items: ["contributing/opensauced-writers-guide/writers-guide"],
},
],
},
{
type: "category",
label: `OpenSauced Packages`,
collapsed: true,
items: [
"opensauced-packages/check-engines",
"opensauced-packages/conventional-commit",
"opensauced-packages/semantic-release",
],
},
],
};