forked from OpenDataEnsemble/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
121 lines (119 loc) · 2.89 KB
/
sidebars.ts
File metadata and controls
121 lines (119 loc) · 2.89 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
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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
/**
* Consolidated sidebar structure following documentation best practices:
* - User-focused content first
* - Related content grouped together
* - Avoid overcrowding with too many small pages
* - Clear separation between user and developer content
*/
const sidebars: SidebarsConfig = {
docs: [
{
type: 'doc',
id: 'index',
label: 'Introduction',
},
{
type: 'category',
label: 'Getting Started',
link: {
type: 'doc',
id: 'getting-started/index',
},
items: [
'getting-started/what-is-ode',
'getting-started/why-ode',
'getting-started/key-concepts',
'getting-started/installation',
'getting-started/installing-formulus',
'getting-started/quick-start',
'getting-started/faq',
],
},
{
type: 'category',
label: 'Using ODE',
link: {
type: 'doc',
id: 'using/index',
},
items: [
'using/your-first-form',
'using/formulus-features',
'using/app-bundles',
'using/data-management',
'using/synchronization',
'using/custom-applications',
'using/working-offline',
'using/troubleshooting',
],
},
{
type: 'category',
label: 'Guides',
link: {
type: 'doc',
id: 'guides/index',
},
items: [
'guides/form-design',
'guides/custom-applications',
'guides/deployment',
'guides/configuration',
],
},
{
type: 'category',
label: 'Reference',
link: {
type: 'doc',
id: 'reference/index',
},
items: [
'reference/api',
'reference/components',
'reference/formulus',
'reference/formplayer',
'reference/formplayer-contract',
'reference/synkronus-cli',
'reference/synkronus-server',
'reference/synkronus-portal',
'reference/form-specifications',
'reference/app-bundle-format',
],
},
{
type: 'category',
label: 'Development',
link: {
type: 'doc',
id: 'development/index',
},
items: [
'development/setup',
'development/installing-formulus-dev',
'development/architecture',
'development/formulus-development',
'development/formplayer-development',
'development/synkronus-development',
'development/synkronus-portal-development',
'development/contributing',
'development/building-testing',
'development/extending',
],
},
{
type: 'category',
label: 'Community',
link: {
type: 'doc',
id: 'community/index',
},
items: [
'community/getting-help',
'community/examples',
],
},
],
};
export default sidebars;