forked from superfaceai/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
54 lines (52 loc) · 1.44 KB
/
sidebars.js
File metadata and controls
54 lines (52 loc) · 1.44 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
/**
* 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
Create as many sidebars as you want.
*/
module.exports = {
guidesSidebar: [
// {
// type: 'doc',
// id: 'guides-intro',
// label: 'Overview'
// },
'getting-started',
'integrations-monitoring',
'guides/api-keys',
'guides/using-multiple-providers',
{
type: 'category',
label: 'How to create a capability',
collapsed: true,
items: [
{ type: 'doc', id: 'guides/how-to-create', label: 'Overview' },
'guides/setup-the-environment',
// 'guides/create-new-profile', Uncomment this once the page si ready
'guides/create-new-capability',
'guides/add-new-provider',
'guides/map-capability-to-provider',
'guides/run-capability',
'guides/test-capability',
'guides/publishing',
],
},
],
providerAvailabilitySidebar: [
'guides/find-provider-by-name',
'guides/add-new-provider',
],
comlinkReferenceSidebar: [
{
type: 'category',
label: 'Comlink References',
collapsed: false,
items: [
{ type: 'doc', id: 'comlink/reference/profile', label: 'Profile' },
{ type: 'doc', id: 'comlink/reference/map', label: 'Map' },
{ type: 'doc', id: 'comlink/reference/provider', label: 'Provider' },
],
},
],
};