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.

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