-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
83 lines (82 loc) · 1.73 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
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* Note from [gfting]: Essentially, modify the code here in order to add new things to the sidebar as you add new actual files to the /docs folder.
*/
module.exports = {
docs: {
"Getting Started": ["introduction", "installation"],
Development: [
"dev/overview",
"dev/running",
"dev/tooling",
{
type: "category",
label: "Client",
items: ["dev/client"],
},
{
type: "category",
label: "Server",
items: [
"dev/server",
"dev/graphql_and_mongodb",
"dev/nfc_and_events",
],
},
"dev/auth",
"dev/folder_structure",
"dev/testing_and_linting",
"dev/developer_faq",
],
Learning: [
"learning/overview",
{
type: "category",
label: "Experience with Web-Dev",
items: ["learning/webexp/overview"],
},
{
type: "category",
label: "No Experience with Web-Dev",
items: ["learning/non-webexp/overview"],
},
"learning/case",
],
"Core Features": [
"core/overview",
"core/application",
"core/hackertable",
],
Plugins: [
"plugins/overview",
"plugins/dev/graphql",
{
type: "category",
label: "Existing",
items: ["plugins/existing/nfc", "plugins/existing/oauth"],
},
{
type: 'category',
label: 'Development',
items: ['plugins/dev/overview', 'plugins/dev/setup'],
},
],
"The Documentation": [
"documentation/docusaurus",
{
type: "category",
label: "Using Docusaurus",
items: [
"documentation/doc1",
"documentation/doc2",
"documentation/doc3",
"documentation/mdx",
],
},
],
},
};