0g-chain/docs/.vuepress/config.js

167 lines
3.9 KiB
JavaScript
Raw Normal View History

2020-05-28 22:11:30 +00:00
module.exports = {
2021-11-16 22:34:33 +00:00
theme: "cosmos",
title: "Kava Documentation",
themeConfig: {
logo: {
src: "/logo.svg"
2020-05-28 22:11:30 +00:00
},
2021-11-16 22:34:33 +00:00
custom: true,
sidebar: {
auto: false,
nav: [
{
2021-11-16 22:34:33 +00:00
title: "Intro to Kava Platform",
children: [
{
2021-11-16 22:34:33 +00:00
title: "Application Process",
path: "/education/application_process.html"
},
2021-11-10 19:44:02 +00:00
{
2021-11-16 22:34:33 +00:00
title: "Development Process",
2021-11-17 23:45:45 +00:00
path: "education/dev_process",
directory: true,
2021-11-10 19:44:02 +00:00
}
]
},
{
2021-11-16 22:34:33 +00:00
title: "Getting Started - Developers",
children: [
{
2021-11-16 22:34:33 +00:00
title: "Hello Kava",
path: "/education/hello_kava.html"
},
{
2021-11-16 22:34:33 +00:00
title: "Javascript SDK",
path: "/building/javascript-sdk.html"
},
{
2021-11-16 22:34:33 +00:00
title: "Run Validator Node",
path: "/validator_guide"
},
{
2021-11-16 22:34:33 +00:00
title: "Run Bots",
children: [
2021-11-10 19:44:02 +00:00
{
2021-11-16 22:34:33 +00:00
title: "Sentinel Bot",
path: "/tools/sentinel.html"
2021-11-10 19:44:02 +00:00
},
{
2021-11-16 22:34:33 +00:00
title: "Auction Bot",
path: "/tools/auction.html"
2021-11-10 19:44:02 +00:00
}
]
},
{
2021-11-16 22:34:33 +00:00
title: "Migration Guide",
path: "/kava-8",
directory: true
}
]
},
{
2021-11-16 22:34:33 +00:00
title: "Resources",
children: [
2021-11-10 19:44:02 +00:00
{
2021-11-16 22:34:33 +00:00
title: "Lite Paper",
path: "/education/lite_paper.html"
2021-11-10 19:44:02 +00:00
},
{
2021-11-16 22:34:33 +00:00
title: "Community Tools",
path: "/tools/community.html"
},
{
2021-11-16 22:34:33 +00:00
title: "Module Specs",
path: "/Modules",
directory: true,
2021-11-10 19:44:02 +00:00
},
{
2021-11-16 22:34:33 +00:00
title: "CLI Docs",
path: "/education/user_actions/",
directory: true,
2021-11-10 19:44:02 +00:00
},
{
2021-11-16 22:34:33 +00:00
title: "REST API Spec",
path: "https://swagger.kava.io/"
2021-11-10 19:44:02 +00:00
},
{
2021-11-16 22:34:33 +00:00
title: "Protocol Reference",
path: "https://pkg.go.dev/github.com/kava-labs/kava?tab=subdirectories"
}
]
}
]
},
2021-11-16 22:34:33 +00:00
footer: {
logo: "/logo.svg",
textLink: {
text: "kava.io",
url: "https://www.kava.io"
},
2021-11-16 22:34:33 +00:00
services: [
{
2021-11-16 22:34:33 +00:00
service: "twitter",
url: "https://twitter.com/kava_platform"
},
{
2021-11-16 22:34:33 +00:00
service: "medium",
url: "https://medium.com/kava-labs"
},
{
2021-11-16 22:34:33 +00:00
service: "telegram",
url: "https://t.me/kavalabs"
},
{
2021-11-16 22:34:33 +00:00
service: "discord",
url: "https://discord.gg/JJYnuCx"
},
{
2021-11-16 22:34:33 +00:00
service: "github",
url: "https://github.com/kava-labs"
}
],
2021-11-16 22:34:33 +00:00
smallprint: "© 2021 Kava Labs.",
links: [
{
2021-11-16 22:34:33 +00:00
title: "Community",
children: [
{
2021-11-16 22:34:33 +00:00
title: "Blog",
url: "https://medium.com/kava-labs"
},
{
2021-11-16 22:34:33 +00:00
title: "Chat",
url: "https://t.me/kavalabs"
}
]
},
{
2021-11-16 22:34:33 +00:00
title: "Contributing",
children: [
{
2021-11-16 22:34:33 +00:00
title: "Contributing to the docs",
url: "https://github.com/Kava-Labs/kava/tree/master/docs"
},
{
2021-11-16 22:34:33 +00:00
title: "Source code on GitHub",
url: "https://github.com/Kava-Labs/kava"
}
]
},
{
2021-11-16 22:34:33 +00:00
title: "Related Docs",
children: [
{
2021-11-16 22:34:33 +00:00
title: "Cosmos SDK",
url: "https://cosmos.network/docs"
},
{
2021-11-16 22:34:33 +00:00
title: "Binance Chain",
url: "https://docs.binance.org"
}
]
2021-11-10 19:44:02 +00:00
}
]
}
}
2021-11-16 22:34:33 +00:00
}