-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
111 lines (96 loc) · 2.37 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
/**
* 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.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
{
type: 'category',
label: 'Introduction',
link: {type: 'doc', id: 'introduction'},
items: []
},
{
type: 'category',
label: 'Requirements',
link: {type: 'doc', id: 'requirements'},
items: []
},
{
type: 'category',
label: 'Release Process',
link: {type: 'doc', id: 'release_process'},
items: []
},
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting_started/install',
'getting_started/configuration',
'getting_started/directory_format',
'getting_started/development',
'getting_started/faq'
],
},
{
type: 'category',
label: 'Architectural Design',
collapsed: false,
items: [
'architectural_design/request_lifecycle',
'architectural_design/third_party_packages',
],
},
{
type: 'category',
label: 'Using Voltis',
collapsed: false,
items: [
'using_voltis/routing',
'using_voltis/controllers',
'using_voltis/middleware',
'using_voltis/request',
'using_voltis/response',
'using_voltis/csrf_protection',
'using_voltis/views',
'using_voltis/elements',
'using_voltis/session',
'using_voltis/validation',
'using_voltis/storage',
'using_voltis/console',
'using_voltis/services',
],
},
{
type: 'category',
label: 'Database',
collapsed: false,
items: [
'database/introduction',
'database/query_builder',
],
},
{
type: 'category',
label: 'Security',
collapsed: false,
items: [
'security/encryption',
'security/hashing',
'security/authentication',
'security/api_authentication',
'security/email_verification',
'security/password_reset',
],
},
],
};
module.exports = sidebars;