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.

164 lines
4.2 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. topbar: {
  25. banner: false,
  26. },
  27. sidebar: {
  28. auto: true,
  29. nav: [
  30. {
  31. title: 'Resources',
  32. children: [
  33. {
  34. title: 'Developer Sessions',
  35. path: '/DEV_SESSIONS.html'
  36. },
  37. {
  38. title: 'RPC',
  39. path: 'https://docs.tendermint.com/master/rpc/',
  40. static: true
  41. },
  42. // TODO: remove once https://github.com/cosmos/vuepress-theme-cosmos/issues/91 is closed
  43. {
  44. title: 'Version 0.32',
  45. path: '/v0.32',
  46. static: true
  47. },
  48. {
  49. title: 'Version 0.33',
  50. path: '/v0.33',
  51. static: true
  52. },
  53. ]
  54. }
  55. ]
  56. },
  57. gutter: {
  58. title: 'Help & Support',
  59. editLink: true,
  60. forum: {
  61. title: 'Tendermint Forum',
  62. text: 'Join the Tendermint forum to learn more',
  63. url: 'https://forum.cosmos.network/c/tendermint',
  64. bg: '#0B7E0B',
  65. logo: 'tendermint'
  66. },
  67. github: {
  68. title: 'Found an Issue?',
  69. text: 'Help us improve this page by suggesting edits on GitHub.'
  70. }
  71. },
  72. footer: {
  73. question: {
  74. text: 'Chat with Tendermint developers in <a href=\'https://discord.gg/cr7N47p\' 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.'
  75. },
  76. logo: '/logo-bw.svg',
  77. textLink: {
  78. text: 'tendermint.com',
  79. url: 'https://tendermint.com'
  80. },
  81. services: [
  82. {
  83. service: 'medium',
  84. url: 'https://medium.com/@tendermint'
  85. },
  86. {
  87. service: 'twitter',
  88. url: 'https://twitter.com/tendermint_team'
  89. },
  90. {
  91. service: 'linkedin',
  92. url: 'https://www.linkedin.com/company/tendermint/'
  93. },
  94. {
  95. service: 'reddit',
  96. url: 'https://reddit.com/r/cosmosnetwork'
  97. },
  98. {
  99. service: 'telegram',
  100. url: 'https://t.me/cosmosproject'
  101. },
  102. {
  103. service: 'youtube',
  104. url: 'https://www.youtube.com/c/CosmosProject'
  105. }
  106. ],
  107. smallprint:
  108. 'The development of the Tendermint project is led primarily by Tendermint Inc., the for-profit entity which also maintains this website. Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit.',
  109. links: [
  110. {
  111. title: 'Documentation',
  112. children: [
  113. {
  114. title: 'Cosmos SDK',
  115. url: 'https://docs.cosmos.network'
  116. },
  117. {
  118. title: 'Cosmos Hub',
  119. url: 'https://hub.cosmos.network'
  120. }
  121. ]
  122. },
  123. {
  124. title: 'Community',
  125. children: [
  126. {
  127. title: 'Tendermint blog',
  128. url: 'https://medium.com/@tendermint'
  129. },
  130. {
  131. title: 'Forum',
  132. url: 'https://forum.cosmos.network/c/tendermint'
  133. }
  134. ]
  135. },
  136. {
  137. title: 'Contributing',
  138. children: [
  139. {
  140. title: 'Contributing to the docs',
  141. url: 'https://github.com/tendermint/tendermint'
  142. },
  143. {
  144. title: 'Source code on GitHub',
  145. url: 'https://github.com/tendermint/tendermint'
  146. },
  147. {
  148. title: 'Careers at Tendermint',
  149. url: 'https://tendermint.com/careers'
  150. }
  151. ]
  152. }
  153. ]
  154. }
  155. },
  156. plugins: [
  157. [
  158. '@vuepress/google-analytics',
  159. {
  160. ga: 'UA-51029217-11'
  161. }
  162. ]
  163. ],
  164. };