-
Notifications
You must be signed in to change notification settings - Fork 8
/
sidebars.js
125 lines (122 loc) · 2.91 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
module.exports = {
someSidebar: {
"Getting Started": [
'getting-started/introduction',
'getting-started/fullstack-example',
],
"Anatomy by Feature": [
'anatomy/cli',
'anatomy/environment',
`anatomy/deploy`,
'anatomy/metrics',
'anatomy/releases',
'anatomy/job-history',
'anatomy/console-logs',
'anatomy/access',
'anatomy/domains',
'anatomy/settings',
'anatomy/build-settings',
'anatomy/environment-variables',
'anatomy/advanced',
'anatomy/billing'
],
"Repository": [
'repository/import url',
'repository/github-apps',
],
"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": [
{
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',
],
},
],
},
};