mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-10 00:01:02 +00:00
* docker builders / buildx prune backend * seems to work with ferret * improve UI error messages * compose files * update compose variables comment * update compose files * update sqlite compose * env vars and others support end of line comment starting with " #" * aws and hetzner default user data for hands free setup * move configs * new core config * smth * implement disable user registration * clean up compose files * add DISABLE_USER_REGISTRATION * 1.14.2 * final
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",
|
|
link: {
|
|
type: "doc",
|
|
id: "setup/index",
|
|
},
|
|
items: [
|
|
"setup/mongo",
|
|
"setup/postgres",
|
|
"setup/sqlite",
|
|
"setup/advanced",
|
|
"setup/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;
|