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

79 lines
2.0 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: "master",
2019-06-18 05:04:47 -07:00
editLinkText: "Edit this page on Github",
2018-12-13 06:48:55 -08:00
lastUpdated: true,
algolia: {
2019-06-18 05:04:47 -07:00
apiKey: "a6e2f64347bb826b732e118c1366819a",
indexName: "cosmos_network",
2018-12-13 06:48:55 -08:00
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/why-app-specific",
"/intro/sdk-app-architecture",
2019-08-08 09:05:03 -07:00
"/intro/sdk-design"
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",
2019-06-05 11:13:39 -07:00
"/tutorial/types",
2019-06-18 05:04:47 -07:00
"/tutorial/key",
"/tutorial/keeper",
"/tutorial/msgs-handlers",
"/tutorial/set-name",
"/tutorial/buy-name",
"/tutorial/queriers",
2019-06-18 05:04:47 -07:00
"/tutorial/alias",
"/tutorial/codec",
"/tutorial/cli",
"/tutorial/rest",
2019-06-05 11:13:39 -07:00
"/tutorial/module",
"/tutorial/genesis",
"/tutorial/app-complete",
"/tutorial/entrypoint",
2019-06-05 11:13:39 -07:00
"/tutorial/gomod",
2018-12-12 08:37:35 -08:00
"/tutorial/build-run",
"/tutorial/run-rest"
]
},
{
2019-08-08 09:05:03 -07:00
title: "Interfaces",
collapsable: true,
2018-10-03 10:11:34 -07:00
children: [
2019-08-08 09:05:03 -07:00
"/interfaces/",
"/interfaces/cli",
"/interfaces/service-providers",
"/interfaces/lite/", // this renders the readme
"/interfaces/lite/getting_started",
"/interfaces/lite/specification"
2019-06-18 05:04:47 -07:00
]
2018-08-15 16:06:37 -07:00
}
]
}
2019-06-18 05:04:47 -07:00
};