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.

153 lines
3.7 KiB

  1. module.exports = {
  2. theme: "cosmos",
  3. // locales: {
  4. // "/": {
  5. // lang: "en-US"
  6. // },
  7. // "/ru/": {
  8. // lang: "ru"
  9. // }
  10. // },
  11. base: process.env.VUEPRESS_BASE,
  12. themeConfig: {
  13. docsRepo: "tendermint/tendermint",
  14. editLinks: true,
  15. docsDir: "docs",
  16. logo: "/logo.svg",
  17. label: "core",
  18. gutter: {
  19. title: "Help & Support",
  20. editLink: true,
  21. chat: {
  22. title: "Riot Chat",
  23. text: "Chat with Tendermint developers on Riot Chat.",
  24. url: "https://riot.im/app/#/room/#tendermint:matrix.org",
  25. bg: "#222"
  26. },
  27. forum: {
  28. title: "Tendermint Forum",
  29. text: "Join the Tendermint forum to learn more",
  30. url: "https://forum.cosmos.network/c/tendermint",
  31. bg: "#0B7E0B",
  32. logo: "tendermint"
  33. },
  34. github: {
  35. title: "Found an Issue?",
  36. text: "Help us improve this page by suggesting edits on GitHub."
  37. }
  38. },
  39. footer: {
  40. logo: "/logo-bw.svg",
  41. textLink: {
  42. text: "tendermint.com",
  43. url: "https://tendermint.com"
  44. },
  45. services: [
  46. {
  47. service: "medium",
  48. url: "https://medium.com/@tendermint"
  49. },
  50. {
  51. service: "twitter",
  52. url: "https://twitter.com/tendermint_team"
  53. },
  54. {
  55. service: "linkedin",
  56. url: "https://www.linkedin.com/company/tendermint/"
  57. },
  58. {
  59. service: "reddit",
  60. url: "https://reddit.com/r/cosmosnetwork"
  61. },
  62. {
  63. service: "telegram",
  64. url: "https://t.me/cosmosproject"
  65. },
  66. {
  67. service: "youtube",
  68. url: "https://www.youtube.com/c/CosmosProject"
  69. }
  70. ],
  71. smallprint:
  72. "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.",
  73. links: [
  74. {
  75. title: "Documentation",
  76. children: [
  77. {
  78. title: "Cosmos SDK",
  79. url: "https://cosmos.network/docs"
  80. },
  81. {
  82. title: "Cosmos Hub",
  83. url: "https://hub.cosmos.network/"
  84. }
  85. ]
  86. },
  87. {
  88. title: "Community",
  89. children: [
  90. {
  91. title: "Tendermint blog",
  92. url: "https://medium.com/@tendermint"
  93. },
  94. {
  95. title: "Forum",
  96. url: "https://forum.cosmos.network/c/tendermint"
  97. },
  98. {
  99. title: "Chat",
  100. url: "https://riot.im/app/#/room/#tendermint:matrix.org"
  101. }
  102. ]
  103. },
  104. {
  105. title: "Contributing",
  106. children: [
  107. {
  108. title: "Contributing to the docs",
  109. url: "https://github.com/tendermint/tendermint"
  110. },
  111. {
  112. title: "Source code on GitHub",
  113. url: "https://github.com/tendermint/tendermint"
  114. },
  115. {
  116. title: "Careers at Tendermint",
  117. url: "https://tendermint.com/careers"
  118. }
  119. ]
  120. }
  121. ]
  122. },
  123. sidebar: [
  124. {
  125. title: "Resources",
  126. children: [
  127. {
  128. title: "Developer Sessions",
  129. path: "/DEV_SESSIONS.html"
  130. },
  131. {
  132. title: "RPC",
  133. path: "/master/rpc/",
  134. static: true
  135. }
  136. ]
  137. }
  138. ]
  139. },
  140. markdown: {
  141. anchor: {
  142. permalinkSymbol: ""
  143. }
  144. },
  145. plugins: [
  146. [
  147. "@vuepress/google-analytics",
  148. {
  149. ga: "UA-51029217-11"
  150. }
  151. ]
  152. ],
  153. };