You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

167 lines
4.1 KiB

  1. module.exports = {
  2. theme: 'cosmos',
  3. title: 'Tendermint Core',
  4. // locales: {
  5. // "/": {
  6. // lang: "en-US"
  7. // },
  8. // "/ru/": {
  9. // lang: "ru"
  10. // }
  11. // },
  12. base: process.env.VUEPRESS_BASE,
  13. themeConfig: {
  14. repo: 'tendermint/tendermint',
  15. docsRepo: 'tendermint/tendermint',
  16. docsDir: 'docs',
  17. editLinks: true,
  18. label: 'core',
  19. algolia: {
  20. id: "BH4D9OD16A",
  21. key: "59f0e2deb984aa9cdf2b3a5fd24ac501",
  22. index: "tendermint"
  23. },
  24. versions: [
  25. {
  26. "label": "v0.32",
  27. "key": "v0.32"
  28. },
  29. {
  30. "label": "v0.33",
  31. "key": "v0.33"
  32. },
  33. {
  34. "label": "v0.34",
  35. "key": "v0.34"
  36. },
  37. {
  38. "label": "master",
  39. "key": "master"
  40. }
  41. ],
  42. topbar: {
  43. banner: false,
  44. },
  45. sidebar: {
  46. auto: true,
  47. nav: [
  48. {
  49. title: 'Resources',
  50. children: [
  51. {
  52. title: 'RPC',
  53. path: 'https://docs.tendermint.com/master/rpc/',
  54. static: true
  55. },
  56. ]
  57. }
  58. ]
  59. },
  60. gutter: {
  61. title: 'Help & Support',
  62. editLink: true,
  63. forum: {
  64. title: 'Tendermint Forum',
  65. text: 'Join the Tendermint forum to learn more',
  66. url: 'https://forum.cosmos.network/c/tendermint',
  67. bg: '#0B7E0B',
  68. logo: 'tendermint'
  69. },
  70. github: {
  71. title: 'Found an Issue?',
  72. text: 'Help us improve this page by suggesting edits on GitHub.'
  73. }
  74. },
  75. footer: {
  76. question: {
  77. text: 'Chat with Tendermint developers in <a href=\'https://discord.gg/cosmosnetwork\' target=\'_blank\'>Discord</a> or reach out on the <a href=\'https://forum.cosmos.network/c/tendermint\' target=\'_blank\'>Tendermint Forum</a> to learn more.'
  78. },
  79. logo: '/logo-bw.svg',
  80. textLink: {
  81. text: 'tendermint.com',
  82. url: 'https://tendermint.com'
  83. },
  84. services: [
  85. {
  86. service: 'medium',
  87. url: 'https://medium.com/@tendermint'
  88. },
  89. {
  90. service: 'twitter',
  91. url: 'https://twitter.com/tendermint_team'
  92. },
  93. {
  94. service: 'linkedin',
  95. url: 'https://www.linkedin.com/company/tendermint/'
  96. },
  97. {
  98. service: 'reddit',
  99. url: 'https://reddit.com/r/cosmosnetwork'
  100. },
  101. {
  102. service: 'telegram',
  103. url: 'https://t.me/cosmosproject'
  104. },
  105. {
  106. service: 'youtube',
  107. url: 'https://www.youtube.com/c/CosmosProject'
  108. }
  109. ],
  110. smallprint:
  111. 'The development of Tendermint Core is led primarily by [Interchain GmbH](https://interchain.berlin/). Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit. The Tendermint trademark is owned by Tendermint Inc, the for-profit entity that also maintains this website.',
  112. links: [
  113. {
  114. title: 'Documentation',
  115. children: [
  116. {
  117. title: 'Cosmos SDK',
  118. url: 'https://docs.cosmos.network'
  119. },
  120. {
  121. title: 'Cosmos Hub',
  122. url: 'https://hub.cosmos.network'
  123. }
  124. ]
  125. },
  126. {
  127. title: 'Community',
  128. children: [
  129. {
  130. title: 'Tendermint blog',
  131. url: 'https://medium.com/@tendermint'
  132. },
  133. {
  134. title: 'Forum',
  135. url: 'https://forum.cosmos.network/c/tendermint'
  136. }
  137. ]
  138. },
  139. {
  140. title: 'Contributing',
  141. children: [
  142. {
  143. title: 'Contributing to the docs',
  144. url: 'https://github.com/tendermint/tendermint'
  145. },
  146. {
  147. title: 'Source code on GitHub',
  148. url: 'https://github.com/tendermint/tendermint'
  149. },
  150. {
  151. title: 'Careers at Tendermint',
  152. url: 'https://tendermint.com/careers'
  153. }
  154. ]
  155. }
  156. ]
  157. }
  158. },
  159. plugins: [
  160. [
  161. '@vuepress/google-analytics',
  162. {
  163. ga: 'UA-51029217-11'
  164. }
  165. ]
  166. ]
  167. };