-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
33 lines (32 loc) · 858 Bytes
/
Copy pathsidebars.js
File metadata and controls
33 lines (32 loc) · 858 Bytes
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
mainSidebar: [
'intro',
{
type: 'category',
label: 'Architecture',
items: ['architecture/overview', 'architecture/servers', 'architecture/databases'],
},
{
type: 'category',
label: 'Evaluator Platform',
items: ['evaluator/overview', 'evaluator/auth', 'evaluator/api', 'evaluator/deployment'],
},
{
type: 'category',
label: 'Wadhwani AI Hackathon',
items: ['wadhwaniai/overview', 'wadhwaniai/phase2'],
},
{
type: 'category',
label: 'Security',
items: ['security/hardening', 'security/checklist'],
},
{
type: 'category',
label: 'Deployment',
items: ['deployment/guide', 'deployment/ssm-access'],
},
],
};
export default sidebars;