mirror of
https://github.com/moghtech/komodo.git
synced 2025-12-05 19:17:36 -06:00
* Add webhooks page to docs * supports * supports * periphery Dockerfile * add comments. Remove unneeded default config * add FILE SYSTEM log * remove log * filter disks included in periphery disk report, on periphery side * dockerized periphery * all in one compose file docs * remove some unused deps
56 lines
1.2 KiB
TypeScript
56 lines
1.2 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",
|
|
"core-setup",
|
|
"connecting-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",
|
|
],
|
|
},
|
|
"sync-resources",
|
|
"webhooks",
|
|
"permissioning",
|
|
"version-upgrades",
|
|
"api",
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|