-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
121 lines (119 loc) · 2.98 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
module.exports = {
someSidebar: {
"Getting Started": [
"getting-started/introduction",
"getting-started/fullstack-example",
],
Installation: [
"installation/installation",
"installation/advanced-installation",
"installation/upgrade",
"installation/minikube",
"installation/digital-ocean",
],
Features: [
"features/cli",
"features/environment",
`features/deploy`,
"features/metrics",
"features/releases",
"features/ci-cd",
"features/job-history",
"features/console-logs",
"features/access",
"features/domains",
"features/settings",
"features/build-settings",
"features/environment-variables",
"features/advanced",
],
Repository: ["repository/import url"],
"Service Types": [
"service-types/static-site",
"service-types/web-app",
"service-types/backend-api",
"service-types/backend-worker",
"service-types/job",
],
Catalog: [
"catalogs/mongodb",
"catalogs/postgresql",
"catalogs/minio",
"catalogs/redis",
"catalogs/mysql",
],
Examples: [
"examples/introduction",
{
type: "category",
label: "Node",
collapsed: false,
items: [
"examples/nodejs/nodejs-example",
"examples/nextjs/nextjs-example",
"examples/express/express-example",
"examples/hapi/hapi-example",
"examples/koa/koa-example",
],
},
{
type: "category",
label: "Golang",
collapsed: false,
items: [
"examples/go/go-example",
"examples/gin/gin-example",
"examples/fasthttp/fasthttp-example",
"examples/beego/beego-example",
],
},
{
type: "category",
label: "Ruby",
collapsed: false,
items: ["examples/ruby/ruby-example"],
},
{
type: "category",
label: "Python",
collapsed: false,
items: [
"examples/django/django-example",
"examples/flask/flask-example",
],
},
{
type: "category",
label: "Rust",
collapsed: false,
items: ["examples/rust/rust-example"],
},
{
type: "category",
label: "Elixir",
collapsed: false,
items: ["examples/elixir/elixir-example"],
},
{
type: "category",
label: "Laravel",
collapsed: false,
items: ["examples/laravel/laravel"],
},
{
type: "category",
label: "Static Websites",
collapsed: false,
items: [
"examples/angular/angular-example",
"examples/docusaurus/docusaurus-example",
"examples/gatsby/gatsby-example",
"examples/ionic/ionic-example",
"examples/preact/preact-example",
"examples/react/react-example",
"examples/vue/vue-example",
],
},
],
},
};