This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontentConfig.js
111 lines (110 loc) · 3.18 KB
/
contentConfig.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
const config = {
linksConfig: [
{
title: 'Quick links',
links: [
{
title: 'Getting Started with Boomerang Flow',
path: '/docs/boomerang-flow/introduction/overview',
},
{
title: 'Tutorials for how to use Boomerang Flow',
path: '/docs/boomerang-flow/tutorials/git-hub-issues-bot',
},
{
title: 'Installing your own Boomerang Flow',
path: '/docs/boomerang-flow/installing/installing',
},
],
},
{
title: 'Discover Boomerang Flow',
links: [
{
title: 'Introduction',
description:
'Get to know Boomerang Flow, an event driven cloud-native workflow orchestration engine.',
path: '/docs/boomerang-flow/introduction/overview',
},
{
title: 'Getting to Know',
description: 'Familiarize yourself with the functionality available',
path: '/docs/boomerang-flow/getting-to-know/workflows',
},
{
title: 'How to Guide',
description: 'Deep dive into how to perform different functions.',
path: '/docs/boomerang-flow/how-to-guide/managing-workflows',
},
{
title: 'Architecture',
description:
'Provides the architecture, the patterns, technologies, and implementation.',
path: '/docs/boomerang-flow/architecture/overview',
},
{
title: 'Installing',
description:
'Learn what it takes, and how, to install your own instance.',
path: '/docs/boomerang-flow/installing/installing',
},
{
title: 'Tutorials',
description: 'Explore practical examples on how to implement.',
path: '/docs/boomerang-flow/tutorials/github-issues-bot',
},
],
},
{
title: 'Discover Boomerang Bosun',
links: [
{
title: 'Introduction',
description:
'Get to know Boomerang Bosun, a policy-based continuous delivery gating system.',
path: '/docs/boomerang-bosun/introduction/overview',
image: 'automation-control-center',
},
{
title: 'Architecture',
description:
'Provides the architecture, the patterns, technologies, and implementation.',
path: '/docs/boomerang-bosun/architecture/application-architecture',
image: 'process-delivery-accelerator',
imageHref: '',
},
],
},
],
solutionsConfig: [
{
title: 'Boomerang Flow',
solution: 'boomerang-flow',
categoryOrder: [
'introduction',
'getting-to-know',
'how-to-guide',
'architecture',
'installing',
],
},
{
title: 'Boomerang Bosun',
solution: 'boomerang-bosun',
categoryOrder: ['introduction', 'architecture'],
},
],
footerLinksConfig: [
{
link: 'https://www.useboomerang.io/',
title: 'useboomerang.io',
type: 'website',
},
{
link: 'https://twitter.com/useboomerangio/',
title: 'Follow Boomerang on Twitter',
type: 'twitter',
},
],
}
module.exports = config