cosmos-sdk/docs/.vuepress/config.js

91 lines
2.3 KiB
JavaScript
Raw Normal View History

2018-08-15 16:06:37 -07:00
module.exports = {
title: "Cosmos SDK Documentation",
description: "Documentation for the Cosmos SDK and Gaia.",
ga: "UA-51029217-2",
dest: "./dist/docs",
2018-08-28 07:18:06 -07:00
base: "/docs/",
2018-08-15 16:06:37 -07:00
markdown: {
lineNumbers: true
},
themeConfig: {
2018-12-13 10:16:23 -08:00
repo: "cosmos/cosmos-sdk",
editLinks: true,
docsDir: "docs",
docsBranch: "develop",
editLinkText: 'Edit this page on Github',
2018-12-13 06:48:55 -08:00
lastUpdated: true,
algolia: {
apiKey: 'a6e2f64347bb826b732e118c1366819a',
indexName: 'cosmos_network',
debug: false
},
nav: [
{ text: "Back to Cosmos", link: "https://cosmos.network" },
2019-01-28 12:41:28 -08:00
{ text: "RPC", link: "https://cosmos.network/rpc/" }
],
2018-08-15 16:06:37 -07:00
sidebar: [
{
title: "Overview",
collapsable: true,
2018-08-15 16:06:37 -07:00
children: [
2018-11-14 14:32:41 -08:00
"/intro/",
"/intro/sdk-app-architecture",
"/intro/ocap"
2018-08-15 16:06:37 -07:00
]
},
{
title: "Gaia",
collapsable: true,
2018-08-15 16:06:37 -07:00
children: [
2019-01-25 03:13:56 -08:00
"/gaia/what-is-gaia",
"/gaia/installation",
"/gaia/join-mainnet",
"/gaia/validators/validator-setup",
"/gaia/validators/overview",
"/gaia/validators/security",
"/gaia/validators/validator-faq",
"/gaia/delegator-guide-cli",
"/gaia/ledger",
"/gaia/gaiacli",
"/gaia/join-testnet",
"/gaia/deploy-testnet"
2018-08-15 16:06:37 -07:00
]
},
2018-10-03 10:11:34 -07:00
{
title: "Tutorial",
collapsable: true,
children: [
"/tutorial/",
"/tutorial/app-design",
"/tutorial/app-init",
"/tutorial/keeper",
"/tutorial/msgs-handlers",
"/tutorial/set-name",
"/tutorial/buy-name",
"/tutorial/queriers",
"/tutorial/codec",
"/tutorial/cli",
"/tutorial/rest",
"/tutorial/app-complete",
"/tutorial/entrypoint",
"/tutorial/dep",
2018-12-12 08:37:35 -08:00
"/tutorial/build-run",
"/tutorial/run-rest"
]
},
{
title: "Clients",
collapsable: true,
2018-10-03 10:11:34 -07:00
children: [
2018-11-14 14:32:41 -08:00
"/clients/",
"/clients/cli",
2018-11-14 14:32:41 -08:00
"/clients/service-providers",
"/clients/lite/", // this renders the readme
"/clients/lite/getting_started",
"/clients/lite/specification"
]
2018-08-15 16:06:37 -07:00
}
]
}
}