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.

175 lines
4.3 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": "v0.35",
  39. "key": "v0.35"
  40. },
  41. {
  42. "label": "master",
  43. "key": "master"
  44. }
  45. ],
  46. topbar: {
  47. banner: false,
  48. },
  49. sidebar: {
  50. auto: true,
  51. nav: [
  52. {
  53. title: 'Resources',
  54. children: [
  55. {
  56. title: 'Developer Sessions',
  57. path: '/DEV_SESSIONS.html'
  58. },
  59. {
  60. title: 'RPC',
  61. path: 'https://docs.tendermint.com/master/rpc/',
  62. static: true
  63. },
  64. ]
  65. }
  66. ]
  67. },
  68. gutter: {
  69. title: 'Help & Support',
  70. editLink: true,
  71. forum: {
  72. title: 'Tendermint Forum',
  73. text: 'Join the Tendermint forum to learn more',
  74. url: 'https://forum.cosmos.network/c/tendermint',
  75. bg: '#0B7E0B',
  76. logo: 'tendermint'
  77. },
  78. github: {
  79. title: 'Found an Issue?',
  80. text: 'Help us improve this page by suggesting edits on GitHub.'
  81. }
  82. },
  83. footer: {
  84. question: {
  85. 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.'
  86. },
  87. logo: '/logo-bw.svg',
  88. textLink: {
  89. text: 'tendermint.com',
  90. url: 'https://tendermint.com'
  91. },
  92. services: [
  93. {
  94. service: 'medium',
  95. url: 'https://medium.com/@tendermint'
  96. },
  97. {
  98. service: 'twitter',
  99. url: 'https://twitter.com/tendermint_team'
  100. },
  101. {
  102. service: 'linkedin',
  103. url: 'https://www.linkedin.com/company/tendermint/'
  104. },
  105. {
  106. service: 'reddit',
  107. url: 'https://reddit.com/r/cosmosnetwork'
  108. },
  109. {
  110. service: 'telegram',
  111. url: 'https://t.me/cosmosproject'
  112. },
  113. {
  114. service: 'youtube',
  115. url: 'https://www.youtube.com/c/CosmosProject'
  116. }
  117. ],
  118. smallprint:
  119. '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.',
  120. links: [
  121. {
  122. title: 'Documentation',
  123. children: [
  124. {
  125. title: 'Cosmos SDK',
  126. url: 'https://docs.cosmos.network'
  127. },
  128. {
  129. title: 'Cosmos Hub',
  130. url: 'https://hub.cosmos.network'
  131. }
  132. ]
  133. },
  134. {
  135. title: 'Community',
  136. children: [
  137. {
  138. title: 'Tendermint blog',
  139. url: 'https://medium.com/@tendermint'
  140. },
  141. {
  142. title: 'Forum',
  143. url: 'https://forum.cosmos.network/c/tendermint'
  144. }
  145. ]
  146. },
  147. {
  148. title: 'Contributing',
  149. children: [
  150. {
  151. title: 'Contributing to the docs',
  152. url: 'https://github.com/tendermint/tendermint'
  153. },
  154. {
  155. title: 'Source code on GitHub',
  156. url: 'https://github.com/tendermint/tendermint'
  157. },
  158. {
  159. title: 'Careers at Tendermint',
  160. url: 'https://tendermint.com/careers'
  161. }
  162. ]
  163. }
  164. ]
  165. }
  166. },
  167. plugins: [
  168. [
  169. '@vuepress/google-analytics',
  170. {
  171. ga: 'UA-51029217-11'
  172. }
  173. ]
  174. ]
  175. };