This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
sidebars.js
156 lines (154 loc) · 4.42 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
docsSidebar: [
"intro",
{
type: "category",
label: "Prologue",
link: {
type: "generated-index",
description: "Introduction to Eventuous, how Eventuous embraces the original idea of Event Sourcing as formulated by Greg Young.",
slug: "prologue"
},
items: [
{
type: "autogenerated",
dirName: "prologue"
}
],
},
{
type: "category",
label: "Domain",
link: {
type: "generated-index",
description: "Building blocks for your domain model.",
slug: "domain"
},
items: [
{
type: "autogenerated",
dirName: "domain"
}
],
},
{
type: "category",
label: "Persistence",
link: {type: "doc", id: "persistence/index"},
items: [
"persistence/aggregate-stream",
"persistence/event-store",
"persistence/aggregate-store/index",
"persistence/serialisation",
]
},
{
type: "category",
label: "Application",
link: {type: "doc", id: "application/index"},
items:[
"application/app-service",
"application/func-service",
"application/command-api",
"application/command-map",
]
},
{
type: "category",
label: "Subscriptions",
link: {
type: "generated-index",
description: "Real-time event processing using subscriptions.",
slug: "subscriptions"
},
items: [
{
type: "autogenerated",
dirName: "subscriptions"
}
],
},
{
type: "category",
label: "Read models",
link: {
type: "generated-index",
description: "Read (query, reporting) models.",
slug: "read-models"
},
items: [
{
type: "autogenerated",
dirName: "read-models"
}
],
},
{
type: "category",
label: "Producers",
link: {type: "doc", id: "producers/index"},
items:[
"producers/implementation",
"producers/providers",
]
},
{
type: "category",
label: "Gateway",
link: {type: "doc", id: "gateway/index"},
items:[
"gateway/implementation/index",
]
},
{
type: "category",
label: "Diagnostics",
link: {
type: "generated-index",
description: "Observability of applications build with Eventuous. WIP.",
slug: "diagnostics"
},
items: [
{
type: "autogenerated",
dirName: "diagnostics"
}
],
},
{
type: "category",
label: "Infrastructure",
link: {
type: "generated-index",
description: "Supported infrastructure.",
slug: "infra",
},
items: [
{
type: "autogenerated",
dirName: "infra"
}
],
},
{
type: "category",
label: "FAQ",
link: {
type: "generated-index",
description: "Frequently asked questions.",
slug: "faq",
},
items: [
{
type: "autogenerated",
dirName: "faq"
}
],
},
],
connectorSidebar: [{type: 'autogenerated', dirName: 'connector'}],
};
module.exports = sidebars;