mirror of https://github.com/buildpacks/docs.git
115 lines
3.2 KiB
TOML
115 lines
3.2 KiB
TOML
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'
|