-
Notifications
You must be signed in to change notification settings - Fork 162
/
config.toml
114 lines (95 loc) · 3.23 KB
/
config.toml
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
baseURL = "https://buildpacks.io/"
languageCode = "en-us"
title = "Cloud Native Buildpacks"
theme = "buildpacks"
pygmentsUseClasses = true
pygmentsCodefences = true
[markup.goldmark.renderer]
unsafe= true
[params]
twitter_handle = "buildpacks_io"
github_base_url = "https://github.com/buildpacks"
slack_invite_url = "https://slack.cncf.io"
description = "Cloud Native Buildpacks transform your application source code into images that can run on any cloud."
pack_version_env_var = "PACK_VERSION"
featureKatacoda = false
[menu]
[[menu.main]]
identifier = "features"
name = "Features"
url = "/features"
weight = 1
[[menu.main]]
identifier = "community"
name = "Community"
url = "/community"
weight = 2
[[menu.main]]
identifier = "blog"
name = "Blog"
url = "https://medium.com/buildpacks"
weight = 3
[[menu.main]]
identifier = "registry"
name = "Registry"
url = "https://registry.buildpacks.io/"
weight = 4
[[menu.footer1]]
name = "DevStats"
url = "https://buildpacks.devstats.cncf.io/d/8/dashboards?orgId=1&refresh=15m"
weight = 1
[[menu.footer1]]
name = "Privacy Policy"
url = "https://www.linuxfoundation.org/privacy/"
weight = 2
[[menu.footer2]]
name = "Mailing List"
url = "https://lists.cncf.io/g/cncf-buildpacks/join"
weight = 1
[[menu.footer2]]
name = "Slack"
url = "https://slack.cncf.io"
weight = 2
[[menu.footer2]]
name = "Twitter"
url = "https://twitter.com/buildpacks_io"
weight = 3
[[menu.footer2]]
name = "GitHub"
url = "https://github.com/buildpacks"
weight = 4
[security]
enableInlineShortcodes = false
[security.exec]
allow = ['^dart-sass-embedded$', '^go$', '^npx$', '^postcss$']
osEnv = ['(?i)^(PATH|PATHEXT|APPDATA|TMP|TEMP|TERM)$']
[security.funcs]
getenv = ['^HUGO_', 'PACK_VERSION']
[security.http]
methods = ['(?i)GET|POST']
urls = ['.*']
# For more information, see https://gohugo.io/getting-started/directory-structure/#union-file-system
[[module.mounts]]
source = 'content'
target = 'content'
[[module.mounts]]
source = 'content/docs/.common/concepts/buildpack.md'
target = 'content/docs/for-app-developers/concepts/buildpack.md'
[[module.mounts]]
source = 'content/docs/.common/concepts/buildpack.md'
target = 'content/docs/for-buildpack-authors/concepts/buildpack.md'
[[module.mounts]]
source = 'content/docs/.common/concepts/buildpack.md'
target = 'content/docs/for-platform-operators/concepts/buildpack.md'
[[module.mounts]]
source = 'content/docs/.common/concepts/extension.md'
target = 'content/docs/for-buildpack-authors/concepts/extension.md'
[[module.mounts]]
source = 'content/docs/.common/concepts/extension.md'
target = 'content/docs/for-platform-operators/concepts/extension.md'
[[module.mounts]]
source = 'content/docs/.common/concepts/composite-buildpack.md'
target = 'content/docs/for-buildpack-authors/concepts/composite-buildpack.md'
[[module.mounts]]
source = 'content/docs/.common/concepts/composite-buildpack.md'
target = 'content/docs/for-platform-operators/concepts/composite-buildpack.md'