forked from batect/batect.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.ts
100 lines (99 loc) · 2.43 KB
/
sidebars.ts
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
const sidebar = [
{
type: "category",
label: "Getting started",
items: [
"getting-started/introduction",
"getting-started/hello-world",
"getting-started/requirements",
"getting-started/installation",
"getting-started/tutorial",
"getting-started/sample-projects",
"getting-started/shell-tab-completion",
"getting-started/comparison",
],
},
{
type: "category",
label: "Concepts",
items: [
"concepts/projects",
"concepts/tasks",
"concepts/containers",
"concepts/caches",
"concepts/includes-and-bundles",
"concepts/task-lifecycle",
"concepts/run-as-current-user-mode",
],
},
{
type: "category",
label: "Reference",
items: [
{
type: "category",
label: "Config file reference",
items: [
"reference/config/overview",
"reference/config/config-variables",
"reference/config/containers",
"reference/config/includes",
"reference/config/tasks",
"reference/config/expressions",
],
},
{
type: "doc",
id: "reference/cli",
},
{
type: "doc",
id: "reference/cheat-sheet",
},
],
},
{
type: "category",
label: "Using Batect with other tools and ecosystems",
items: [
"using-batect-with/tools/index",
"using-batect-with/tools/cypress",
"using-batect-with/tools/docker",
"using-batect-with/tools/golang",
"using-batect-with/tools/gradle",
"using-batect-with/tools/net-core",
"using-batect-with/tools/nodejs",
"using-batect-with/tools/renovate",
"using-batect-with/tools/ruby",
"using-batect-with/tools/seq",
],
},
{
type: "category",
label: "Using Batect with CI systems",
items: [
"using-batect-with/ci/general",
"using-batect-with/ci/buildkite",
"using-batect-with/ci/circleci",
"using-batect-with/ci/github-actions",
"using-batect-with/ci/travis-ci",
],
},
{
type: "category",
label: "How to guides",
items: [
"how-to/ide-integration",
"how-to/performance",
"how-to/keep-batect-up-to-date",
"how-to/migrate-existing-codebase",
"how-to/migrate-from-docker-compose",
"how-to/build-artefacts-owned-by-root",
"how-to/wait-for-dependencies",
"how-to/proxies",
],
},
];
module.exports = {
sidebar,
};