-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathconfig.toml
More file actions
executable file
·202 lines (160 loc) · 3.81 KB
/
Copy pathconfig.toml
File metadata and controls
executable file
·202 lines (160 loc) · 3.81 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
baseurl = "https://trunkbaseddevelopment.com/"
languageCode = "en-us"
title = "Trunk Based Development"
theme = "hugo-material-docs"
metadataformat = "yaml"
canonifyurls = true
# Enable Google Analytics by entering your tracking id
googleAnalytics = "UA-24415524-3"
[params]
# General information
author = "paul-hammant"
description = "A portal on this practice"
copyright = "TrunkBasedDevelopment.com's contributors."
# Repository
provider = "GitHub"
repo_url = "https://github.com/paul-hammant/tbd"
version = "1.0.0"
logo = "images/logo.png"
favicon = ""
permalink = "#"
# Custom assets
custom_css = []
custom_js = []
# Syntax highlighting theme
highlight_css = ""
[params.palette]
primary = "blue"
accent = "light-blue"
[params.font]
text = "Ubuntu"
code = "Ubuntu Mono"
[page]
nextPrevInSectionSortOrder = 'desc'
nextPrevSortOrder = 'desc'
[social]
twitter = ""
github = "paul-hammant"
email = "paul@hammant.org"
[[menu.main]]
name = "Introduction"
url = "/"
weight = 1
[[menu.main]]
name = "Context"
url = "context/"
weight = 5
[[menu.main]]
name = "Five-minute overview"
url = "5-min-overview/"
weight = 11
[[menu.main]]
name = "Deciding factors"
url = "deciding-factors/"
weight = 21
[[menu.main]]
name = "Version control system features"
url = "vcs-features/"
weight = 31
[[menu.main]]
name = "Version control system choices"
url = "vcs-choices/"
weight = 32
[[menu.main]]
name = "Feature flags"
url = "feature-flags/"
weight = 41
[[menu.main]]
name = "Branch by Abstraction"
url = "branch-by-abstraction/"
weight = 53
[[menu.main]]
name = "Branch for release"
url = "branch-for-release/"
weight = 55
[[menu.main]]
name = "Release from trunk"
url = "release-from-trunk/"
weight = 56
[[menu.main]]
name = "Styles and Trade-offs"
url = "styles/"
weight = 60
[[menu.main]]
name = "Continuous Integration (CI)"
url = "continuous-integration/"
weight = 61
[[menu.main]]
name = "Committing straight to the trunk"
url = "committing-straight-to-the-trunk/"
weight = 62
[[menu.main]]
name = "Short-Lived Feature Branches"
url = "short-lived-feature-branches/"
weight = 63
[[menu.main]]
name = "Continuous Code Review"
url = "continuous-review/"
weight = 65
[[menu.main]]
name = "Continuous Delivery (CD)"
url = "continuous-delivery/"
weight = 71
[[menu.main]]
name = "Concurrent development of consecutive releases"
url = "concurrent-development-of-consecutive-releases/"
weight = 75
[[menu.main]]
name = "Application strangulation"
url = "strangulation/"
weight = 78
[[menu.main]]
name = "Observed habits"
url = "observed-habits/"
weight = 81
[[menu.main]]
name = "You're doing it wrong"
url = "youre-doing-it-wrong/"
weight = 91
[[menu.main]]
name = "Alternative branching models"
url = "alternative-branching-models/"
weight = 101
[[menu.main]]
name = "Monorepos"
url = "monorepos/"
weight = 111
[[menu.main]]
name = "Expanding Contracting Monorepos"
url = "expanding-contracting-monorepos/"
weight = 112
[[menu.main]]
name = "Game Changers"
url = "game-changers/"
weight = 121
[[menu.main]]
name = "Publications"
url = "publications/"
weight = 131
[[menu.main]]
name = "Book on this topic"
url = "book/"
weight = 132
[[menu.main]]
name = "Key to branch diagrams"
url = "key/"
weight = 141
[[menu.main]]
name = "Contributions"
url = "contributions/"
weight = 151
# Hugo 0.110 uses Goldmark, not Blackfriday. Raw HTML in content (the <div>
# quote blocks, iframes, etc.) is dropped unless unsafe rendering is enabled.
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions]
typographer = true
[sitemap]
changefreq = "weekly"
priority = 0.5
filename = "sitemap.xml"