-
Notifications
You must be signed in to change notification settings - Fork 435
Expand file tree
/
Copy pathmodule.toml
More file actions
252 lines (191 loc) · 4.25 KB
/
module.toml
File metadata and controls
252 lines (191 loc) · 4.25 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
## See Hugo's docs on module mounts: https://gohugo.io/hugo-modules/configuration/
noProxy = 'none'
noVendor = ''
private = '*.*'
proxy = 'direct'
#replacements = ''
vendorClosest = false
workspace = ''
###
# Chef Automate
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/automate-private/components/docs-chef-io"
[[imports.mounts]]
source = "data"
target = "data"
[[imports.mounts]]
source = "static/automate-api-docs"
target = "static/automate-api-docs"
###
# Chef Desktop
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/desktop-config/docs-chef-io"
[[imports.mounts]]
source = "content"
target = "content"
[[imports.mounts]]
source = "static"
target = "assets"
[[imports.mounts]]
source = "data"
target = "data"
[[imports.mounts]]
source = "layouts"
target = "layouts"
###
# Chef Habitat on-prem Builder
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/habitat-sh/on-prem-builder/docs-chef-io"
[[imports.mounts]]
source = "content/habitat/builder/on_prem"
target = "content/habitat/builder/on_prem"
[[imports.mounts]]
source = "static"
target = "assets"
###
# Chef Infra Server
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/chef-server/docs-chef-io"
[[imports.mounts]]
source = "content/server"
target = "content/server"
[[imports.mounts]]
source = "static"
target = "static"
[[imports.mounts]]
source = "layouts"
target = "layouts"
###
# Chef Supermarket
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/supermarket/docs-chef-io"
[[imports.mounts]]
source = "content"
target = "content"
[[imports.mounts]]
source = "layouts"
target = "layouts"
###
# Effortless Pattern
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/effortless/docs-chef-io"
[[imports.mounts]]
source = "content/effortless"
target = "content/effortless"
###
## Compliance Profiles
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/compliance-profiles/docs-chef-io"
[[imports.mounts]]
source = "content"
target = "content/release_notes/"
###
## Compliance Remediation
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/compliance-remediation-2022/docs-chef-io"
[[imports.mounts]]
source = "content"
target = "content/release_notes/"
###
# Local License Service
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/license-service/docs-chef-io"
[[imports.mounts]]
source = "content/licensing/local_license_service"
target = "content/licensing/local_license_service"
###
## Mount generated/genereted_content to content
###
[[mounts]]
source = "generated/generated_content"
target = "content"
###
## Mount content/static/assets
###
[[mounts]]
source = "content"
target = "content"
[[mounts]]
source = "static"
target = "assets"
[[mounts]]
source = "assets"
target = "assets"
###
# Mount chef/samples
###
[[imports]]
disable = false
ignoreConfig = false
path = "github.com/chef/samples"
[[imports.mounts]]
source = '.'
target = 'static/samples'
###
# Mount Hugo theme
###
[[imports]]
disable = false
ignoreConfig = false
ignoreImports = false
path = "github.com/chef/chef-docs-theme"
[[imports.mounts]]
source = "static"
target = "static"
[[imports.mounts]]
source = "layouts"
target = "layouts"
[[imports.mounts]]
source = "data"
target = "data"
[[imports.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = 'archetypes'
target = 'archetypes'
###
# NPM packages imported with package.hugo.json from chef-docs-theme
###
[[mounts]]
source = "node_modules/redoc/bundles/redoc.standalone.js"
target = "assets/redoc/bundles/redoc.standalone.js"
[[mounts]]
source = "node_modules/foundation-sites/dist/js/foundation.min.js"
target = "assets/js/vendor/foundation-sites/dist/js/foundation.min.js"
[[mounts]]
source = "node_modules/jquery/dist/jquery.min.js"
target = "assets/js/vendor/jquery/dist/jquery.min.js"
###
# SCSS files imported with package.hugo.json from chef-docs-theme
###
[[mounts]]
source = "node_modules/foundation-sites"
target = "assets/sass/foundation-sites"