-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsidebarTutorials.js
More file actions
42 lines (41 loc) · 973 Bytes
/
sidebarTutorials.js
File metadata and controls
42 lines (41 loc) · 973 Bytes
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
/**
* Copyright (c) 2019-present, Okteto, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
docs: [
{
type: 'link',
label: 'Documentation',
href: '/docs',
},
{
type: 'category',
label: 'Tutorials',
className: 'sidebarCategoryHideLinks',
collapsed: false,
link: {
type: 'doc',
id: 'index',
},
items: [
'getting-started-with-okteto',
'aws-lambda',
'compose-getting-started',
'external-resources',
'webpack',
'using-launchdarkly-and-okteto-to-automate-modern-feature-flag-management',
'divert',
'optimize-your-development-environment',
'create-and-use-volume-snapshots',
],
},
{
type: 'link',
label: 'Community forum',
href: 'https://community.okteto.com/',
},
],
};