-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsidebars.js
More file actions
130 lines (123 loc) · 3.78 KB
/
Copy pathsidebars.js
File metadata and controls
130 lines (123 loc) · 3.78 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
130
/**
* 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 = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// tutorialSidebar: [{ type: "autogenerated", dirName: "." }],
// But you can create a sidebar manually
tutorialSidebar: [
'index',
{
type: 'category',
label: 'Getting started',
link: { type: 'doc', id: 'getting-started/index' },
items: [
'getting-started/prerequisites',
{
type: 'category',
label: 'Agent Setup',
link: { type: 'doc', id: 'getting-started/set-up/index' },
items: [
'getting-started/set-up/aries-askar',
'getting-started/set-up/anoncreds',
'getting-started/set-up/indy-vdr',
'getting-started/set-up/cheqd/index',
'getting-started/set-up/openid4vc',
'getting-started/set-up/hedera/index',
],
},
],
},
{
type: 'category',
label: 'Concepts',
link: { type: 'doc', id: 'concepts/index' },
items: ['concepts/agents', 'concepts/did-and-didcomm', 'concepts/platform-and-environment'],
},
{
type: 'category',
label: 'Features',
link: { type: 'doc', id: 'features/index' },
items: ['features/aries', 'features/openid4vc', 'features/dids', 'features/credentials'],
},
{
type: 'category',
label: 'Tutorials',
link: { type: 'doc', id: 'tutorials/index' },
items: [
{
type: 'category',
label: 'Agent Config',
link: { type: 'doc', id: 'tutorials/agent-config/index' },
items: ['tutorials/agent-config/logging'],
},
'tutorials/create-a-connection',
'tutorials/cheqd/index',
'tutorials/registering-schema-and-credential-definition',
'tutorials/issue-an-anoncreds-credential-over-didcomm',
'tutorials/mediation',
'tutorials/hedera/index',
{
type: 'category',
label: 'OpenID for Verifiable Credentials',
link: { type: 'doc', id: 'tutorials/openid4vc/index' },
items: [
'tutorials/openid4vc/issuing-credentials-using-openid4vc-issuer-module',
'tutorials/openid4vc/receiving-and-proving-credentials-using-openid4vc-holder-module',
'tutorials/openid4vc/verifying-credentials-using-openid4vc-verifier-module',
],
},
],
},
{
type: 'category',
label: 'Updating',
link: { type: 'doc', id: 'updating/index' },
items: [
'updating/update-assistant',
'updating/update-indy-sdk-to-askar',
'updating/versions/0.1-to-0.2',
'updating/versions/0.2-to-0.3',
'updating/versions/0.3-to-0.4',
'updating/versions/0.4-to-0.5',
'updating/versions/0.5-to-0.6',
],
},
'ecosystem/index',
{
type: 'category',
label: 'Extensions',
link: { type: 'doc', id: 'extensions/index' },
items: [
{
type: 'doc',
label: 'REST API',
id: 'extensions/rest',
},
{
type: 'doc',
label: 'React Hooks',
id: 'extensions/react-hooks',
},
{
type: 'doc',
label: 'Redux Store',
id: 'extensions/redux-store',
},
{
type: 'doc',
label: 'Push Notifications',
id: 'extensions/push-notifications',
},
],
},
],
}
module.exports = sidebars