mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-13 23:02:17 +00:00
99 lines
1.9 KiB
TypeScript
99 lines
1.9 KiB
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
docsSidebar: [
|
|
{
|
|
type: "doc",
|
|
id: "introduction",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Getting Started",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "setup/installation",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "setup/nginx-reverse-proxy",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "setup/upgrading",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Configuration",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "configuration/environment-variables",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "configuration/ldap",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "guides/proxy-services",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Client Examples",
|
|
link: {
|
|
type: "generated-index",
|
|
title: "Client Examples",
|
|
description:
|
|
"Examples of how to setup Pocket ID with different clients",
|
|
slug: "client-examples",
|
|
},
|
|
items: [
|
|
"client-examples/hoarder",
|
|
"client-examples/jellyfin",
|
|
"client-examples/vikunja",
|
|
"client-examples/open-webui",
|
|
"client-examples/semaphore-ui",
|
|
"client-examples/cloudflare-zero-trust",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Troubleshooting",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "troubleshooting/account-recovery",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Helping Out",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "help-out/contribute",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "link",
|
|
label: "Demo",
|
|
href: "https://pocket-id.eliasschneider.com/",
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|