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