config.toml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. languageCode = "en-us"
  2. title = "Materialize Documentation"
  3. pygmentsCodeFences = true
  4. pygmentsUseClasses = true
  5. disableKinds = ['taxonomy']
  6. [params]
  7. repo = "//github.com/MaterializeInc/materialize"
  8. bannerMessage = ""
  9. bannerLink = ""
  10. [frontmatter]
  11. publishDate = ["publishDate"]
  12. #
  13. # Get started
  14. #
  15. [[menu.main]]
  16. identifier = "get-started"
  17. name = "Get started"
  18. weight = 5
  19. #
  20. # Connect sources
  21. #
  22. [[menu.main]]
  23. name = "CockroachDB"
  24. parent = 'ingest-data'
  25. identifier = 'crdb'
  26. weight = 20
  27. [[menu.main]]
  28. name = "Redpanda"
  29. parent = 'ingest-data'
  30. identifier = 'redpanda'
  31. weight = 25
  32. [[menu.main]]
  33. identifier = "webhooks"
  34. name = "Webhooks"
  35. parent = 'ingest-data'
  36. weight = 30
  37. [[menu.main]]
  38. identifier = "network-security"
  39. name = "Network security"
  40. parent = 'ingest-data'
  41. weight = 35
  42. #
  43. # Transform data
  44. #
  45. [[menu.main]]
  46. identifier = "transform-data"
  47. name = "Transform data"
  48. weight = 12
  49. #
  50. # Reference
  51. #
  52. [[menu.main]]
  53. identifier = "reference"
  54. name = "Reference"
  55. weight = 15
  56. [[menu.main]]
  57. identifier = "cs_redpanda"
  58. name = "Redpanda"
  59. parent = "create-source"
  60. url = "/sql/create-source/kafka"
  61. weight = 10
  62. [[menu.main]]
  63. identifier = "csink_redpanda"
  64. name = "Redpanda"
  65. parent = "create-sink"
  66. url = "/sql/create-sink/kafka"
  67. [[menu.main]]
  68. name = "SQL commands"
  69. identifier = "commands"
  70. parent = "reference"
  71. weight = 100
  72. [[menu.main]]
  73. name = "CREATE SOURCE"
  74. parent = 'commands'
  75. url = '/sql/create-source'
  76. [[menu.main]]
  77. name = "CREATE SINK"
  78. parent = 'commands'
  79. url = '/sql/create-sink'
  80. #
  81. # Releases
  82. #
  83. [[menu.main]]
  84. identifier = "releases-previews"
  85. name = "Releases"
  86. weight = 65
  87. [[menu.main]]
  88. identifier = "changelogs"
  89. name = "Changelog ↗️"
  90. parent = "releases-previews"
  91. weight = 20
  92. url = "https://materialize.com/changelog/"
  93. #
  94. # About
  95. #
  96. [[menu.main]]
  97. identifier = "about"
  98. name = "About"
  99. weight = 70
  100. [[menu.main]]
  101. name = "Security overview"
  102. parent = "about"
  103. url = "https://materialize.com/security-overview"
  104. weight = 25
  105. [[menu.main]]
  106. name = "Responsible disclosure policy"
  107. parent = "about"
  108. url = "https://materialize.com/securitydisclosure"
  109. weight = 30
  110. [markup.goldmark.renderer]
  111. # allow <a name="link-target">, the old syntax no longer works
  112. unsafe = true
  113. [[deployment.targets]]
  114. name = "production"
  115. url = "s3://materialize-website?region=us-east-1"
  116. # Sync only the docs, to avoid deleting the marketing website.
  117. include = "docs/**"
  118. # Per Hugo docs:
  119. # The pattern syntax is documented here: https://godoc.org/github.com/gobwas/glob#Glob
  120. # Patterns should be written with forward slashes as separator.
  121. #
  122. # include = "**.html" # would only include files with ".html" suffix
  123. # exclude = "**.{jpg, png}" # would exclude files with ".jpg" or ".png" suffix
  124. # Avoid deleting self-managed docs which are deployed from the self-managed-docs branches.
  125. exclude = "docs/{self-managed/v25.1,self-managed/v25.2}/**"