mirror of
https://github.com/moghtech/komodo.git
synced 2026-03-11 17:44:19 -05:00
70 lines
1.5 KiB
TypeScript
70 lines
1.5 KiB
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
const sidebars: SidebarsConfig = {
|
|
docs: [
|
|
"intro",
|
|
"resources",
|
|
{
|
|
type: "category",
|
|
label: "Setup Komodo Core",
|
|
link: {
|
|
type: "doc",
|
|
id: "setup/index",
|
|
},
|
|
items: [
|
|
"setup/mongo",
|
|
"setup/postgres",
|
|
"setup/sqlite",
|
|
"setup/advanced",
|
|
],
|
|
},
|
|
"connect-servers",
|
|
{
|
|
type: "category",
|
|
label: "Build Images",
|
|
link: {
|
|
type: "doc",
|
|
id: "build-images/index",
|
|
},
|
|
items: [
|
|
"build-images/configuration",
|
|
"build-images/pre-build",
|
|
"build-images/builders",
|
|
"build-images/versioning",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Deploy Containers",
|
|
link: {
|
|
type: "doc",
|
|
id: "deploy-containers/index",
|
|
},
|
|
items: [
|
|
"deploy-containers/configuration",
|
|
"deploy-containers/lifetime-management",
|
|
// "deploy-containers/choosing-builder",
|
|
// "deploy-containers/versioning",
|
|
],
|
|
},
|
|
"docker-compose",
|
|
"sync-resources",
|
|
"webhooks",
|
|
"permissioning",
|
|
"version-upgrades",
|
|
"api",
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|