-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
135 lines (128 loc) · 4.7 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
/**
* 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
// defaultSidebar: [{ type: 'autogenerated', dirName: '.', }],
hamsterSidebar: [
'index',
// {
// type: 'html',
// value: '<img src= "icon/WX20230524-141302.png" alt = "Template Market">',
// defaultStyle:true,
// },
{
type: 'category',
label: 'Automated Workflow',
collapsible: true,
collapsed: true,
items: [
'Automated workflow/Overview',
{
type: 'category',
label: 'EVM Contracts',
collapsible: true,
collapsed: true,
items: ['Automated workflow/EVM Contract/Create Project for EVM',
'Automated workflow/EVM Contract/Check EVM Contract',
'Automated workflow/EVM Contract/Build EVM Contract',
'Automated workflow/EVM Contract/Deploy EVM Contract',
'Automated workflow/EVM Contract/Exploring EVM Contract',
'Automated workflow/EVM Contract/Manage EVM Project'],
},
{
type: 'category',
label: 'Starknet Contracts',
collapsible: true,
collapsed: true,
items: ['Automated workflow/Starknet Contract/Overview',
'Automated workflow/Starknet Contract/Create Contract Project',
'Automated workflow/Starknet Contract/Check Contract',
'Automated workflow/Starknet Contract/Build Contract',
'Automated workflow/Starknet Contract/Deploy Contract',
'Automated workflow/Starknet Contract/Explore Contract',
'Automated workflow/Starknet Contract/Manage Project'],
},
{
type: 'category',
label: 'Solana Contracts',
collapsible: true,
collapsed: true,
items: ['Automated workflow/Solana Contract/Create Project for Solana',
'Automated workflow/Solana Contract/Build Solana Contract',
'Automated workflow/Solana Contract/Deploy Solana Contract',
'Automated workflow/Solana Contract/Exploring Solana Contract',
'Automated workflow/Solana Contract/Manage Solana project'],
},
{
type: 'category',
label: 'Front-End Project',
collapsible: true,
collapsed: true,
items: ['Automated workflow/Front-End Project/Create Project for Front-End',
'Automated workflow/Front-End Project/Check Front-End Code',
'Automated workflow/Front-End Project/Build Front-End Code',
'Automated workflow/Front-End Project/Deploy Front-End Code',
'Automated workflow/Front-End Project/Exploring Front-End Project',
'Automated workflow/Front-End Project/Manage Front-End Project'],
},
{
type: 'category',
label: 'Node Project',
collapsible: true,
collapsed: true,
items: ['Automated workflow/Node Project/Create Project for Node',
'Automated workflow/Node Project/Build Node Code',
'Automated workflow/Node Project/Deploy Node Code',
'Automated workflow/Node Project/Exploring Node Project',
'Automated workflow/Node Project/Manage Node Project'],
},
],
},
{
type: 'category',
label: 'Middleware',
collapsible: true,
collapsed: true,
items: [
'Middleware/Overview',
'Middleware/MiddlewareServer',
'Middleware/Getting Started/GettingStarted',
{
type: 'category',
label: 'User Guide',
collapsible: true,
collapsed: true,
items: [
'Middleware/User Guide/RPC/RPC',
'Middleware/User Guide/Hamslink/Hamslink',
'Middleware/User Guide/Node Service/Node Service'],
},
],
},
{
type: 'category',
label: 'Tools',
collapsible: true,
collapsed: true,
items: [
{
type: 'category',
label: 'ALine CI',
collapsible: true,
collapsed: true,
items: ['AlineCI/overview','AlineCI/syntax', 'AlineCI/plugins'],
},
],
},
'ReleaseNote/release',
],
}
module.exports = sidebars