123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- languageCode = "en-us"
- title = "Materialize Documentation"
- pygmentsCodeFences = true
- pygmentsUseClasses = true
- disableKinds = ['taxonomy']
- [params]
- repo = "//github.com/MaterializeInc/materialize"
- bannerMessage = ""
- bannerLink = ""
- [frontmatter]
- publishDate = ["publishDate"]
- #
- # Get started
- #
- [[menu.main]]
- identifier = "get-started"
- name = "Get started"
- weight = 5
- #
- # Connect sources
- #
- [[menu.main]]
- name = "CockroachDB"
- parent = 'ingest-data'
- identifier = 'crdb'
- weight = 20
- [[menu.main]]
- name = "Redpanda"
- parent = 'ingest-data'
- identifier = 'redpanda'
- weight = 25
- [[menu.main]]
- identifier = "webhooks"
- name = "Webhooks"
- parent = 'ingest-data'
- weight = 30
- [[menu.main]]
- identifier = "network-security"
- name = "Network security"
- parent = 'ingest-data'
- weight = 35
- #
- # Transform data
- #
- [[menu.main]]
- identifier = "transform-data"
- name = "Transform data"
- weight = 12
- #
- # Reference
- #
- [[menu.main]]
- identifier = "reference"
- name = "Reference"
- weight = 15
- [[menu.main]]
- identifier = "cs_redpanda"
- name = "Redpanda"
- parent = "create-source"
- url = "/sql/create-source/kafka"
- weight = 10
- [[menu.main]]
- identifier = "csink_redpanda"
- name = "Redpanda"
- parent = "create-sink"
- url = "/sql/create-sink/kafka"
- [[menu.main]]
- name = "SQL commands"
- identifier = "commands"
- parent = "reference"
- weight = 100
- [[menu.main]]
- name = "CREATE SOURCE"
- parent = 'commands'
- url = '/sql/create-source'
- [[menu.main]]
- name = "CREATE SINK"
- parent = 'commands'
- url = '/sql/create-sink'
- #
- # Releases
- #
- [[menu.main]]
- identifier = "releases-previews"
- name = "Releases"
- weight = 65
- [[menu.main]]
- identifier = "changelogs"
- name = "Changelog ↗️"
- parent = "releases-previews"
- weight = 20
- url = "https://materialize.com/changelog/"
- #
- # About
- #
- [[menu.main]]
- identifier = "about"
- name = "About"
- weight = 70
- [[menu.main]]
- name = "Security overview"
- parent = "about"
- url = "https://materialize.com/security-overview"
- weight = 25
- [[menu.main]]
- name = "Responsible disclosure policy"
- parent = "about"
- url = "https://materialize.com/securitydisclosure"
- weight = 30
- [markup.goldmark.renderer]
- # allow <a name="link-target">, the old syntax no longer works
- unsafe = true
- [[deployment.targets]]
- name = "production"
- url = "s3://materialize-website?region=us-east-1"
- # Sync only the docs, to avoid deleting the marketing website.
- include = "docs/**"
- # Per Hugo docs:
- # The pattern syntax is documented here: https://godoc.org/github.com/gobwas/glob#Glob
- # Patterns should be written with forward slashes as separator.
- #
- # include = "**.html" # would only include files with ".html" suffix
- # exclude = "**.{jpg, png}" # would exclude files with ".jpg" or ".png" suffix
- # Avoid deleting self-managed docs which are deployed from the self-managed-docs branches.
- exclude = "docs/{self-managed/v25.1,self-managed/v25.2}/**"
|