-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
67 lines (65 loc) · 2.11 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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
about: [
'about/index',
'about/things-were-interested-in',
'about/roadmap',
'about/contribute',
'about/history',
],
// @TODO: We need to re-write the learn section a little as things like "Bamboo" etc. got removed from the specification.
// See related issue: https://github.com/p2panda/handbook/issues/306
learn: ['learn/index', 'learn/entries', 'learn/operations', 'learn/networks'],
specifications: [
'specifications/index',
'specifications/namakemono/index',
{
type: 'category',
label: 'aquadoggo API',
items: [
{
type: 'doc',
id: 'specifications/aquadoggo/index',
label: 'Introduction',
},
'specifications/aquadoggo/key-concepts',
{
type: 'category',
label: 'Core data types',
items: [
'specifications/aquadoggo/data-types/bamboo',
'specifications/aquadoggo/data-types/key-pairs',
'specifications/aquadoggo/data-types/operations',
'specifications/aquadoggo/data-types/schemas',
'specifications/aquadoggo/data-types/documents',
'specifications/aquadoggo/data-types/document-views',
'specifications/aquadoggo/data-types/blobs',
],
},
{
type: 'category',
label: 'APIs',
items: [
'specifications/aquadoggo/APIs/overview',
'specifications/aquadoggo/APIs/publishing',
'specifications/aquadoggo/APIs/queries',
'specifications/aquadoggo/APIs/blob-http',
],
},
{
type: 'category',
label: 'Networking',
items: [
'specifications/aquadoggo/networking/clients-nodes',
'specifications/aquadoggo/networking/networking',
],
},
'specifications/aquadoggo/replication',
'specifications/aquadoggo/encoding-data',
'specifications/aquadoggo/glossary',
],
},
],
};
module.exports = sidebars;