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

75 lines
1.9 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: {
lastUpdated: "Last Updated",
nav: [{ text: "Back to Cosmos", link: "https://cosmos.network" }],
sidebar: [
{
title: "Overview",
2018-08-15 16:06:37 -07:00
collapsable: false,
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",
2018-08-15 16:06:37 -07:00
collapsable: false,
children: [
"/gaia/installation",
"/gaia/join-testnet",
"/gaia/validators/validator-setup",
"/gaia/validators/overview",
"/gaia/validators/security",
"/gaia/validators/validator-faq",
"/gaia/deploy-testnet",
"/gaia/ledger",
"/gaia/gaiacli"
2018-08-15 16:06:37 -07:00
]
},
2018-10-03 10:11:34 -07:00
{
title: "Tutorial",
collapsable: false,
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",
2018-10-03 10:11:34 -07:00
collapsable: false,
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
}
]
}
}