-
Notifications
You must be signed in to change notification settings - Fork 4
/
sidebars.js
90 lines (89 loc) · 1.89 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
{
type: 'doc',
label: 'What is Praise?',
id: 'index',
},
{
type: 'category',
label: 'How Praise works',
link: {
type: 'generated-index',
},
collapsed: false,
items: [
'how-praise-works/praise',
'how-praise-works/quantify',
'how-praise-works/analyze',
'how-praise-works/reward',
],
},
{
type: 'doc',
label: 'Getting started',
id: 'getting-started',
},
{
type: 'category',
label: 'Run Praise on a server',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'server-setup/index',
'server-setup/setup-firewall-and-user',
'server-setup/configure-ufw-for-docker',
'server-setup/create-discord-bot',
'server-setup/upgrade-praise',
'server-setup/server-scripts'
],
},
{
type: 'doc',
label: 'Run Praise locally',
id: 'local-setup/index',
},
{
type: 'category',
label: 'Configuring Praise',
link: {
type: 'generated-index',
},
collapsed: true,
items: [
'configuring/application',
'configuring/period-defaults',
'configuring/discord-bot',
],
},
{
type: 'doc',
label: 'Using Praise',
id: 'using-praise',
},
{
type: 'doc',
label: 'Writing excellent Praise',
id: 'writing-excellent-praise',
},
{
type: 'doc',
label: 'Praise for Data Analysts',
id: 'praise-for-data-analysts',
},
{
type: 'doc',
label: 'Glossary',
id: 'glossary',
},
{
type: 'doc',
label: 'FAQ',
id: 'faq',
},
],
};
module.exports = sidebars;