From aaa30cb61407fbe6ad68e65047bc3022dd811706 Mon Sep 17 00:00:00 2001 From: Max Wolfs Date: Mon, 7 Oct 2024 13:08:59 +0200 Subject: [PATCH] add opendesk docs Signed-off-by: Max Wolfs --- .gitignore | 1 + docs.package.json | 6 ++++++ sidebarsUserDocs.js | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 sidebarsUserDocs.js diff --git a/.gitignore b/.gitignore index 1a579d47f2..7e5055d4ce 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ /standards/*/*.md /standards/*/*.mdx /standards/scs-*.yaml +/user-docs/application-examples # Dependencies node_modules diff --git a/docs.package.json b/docs.package.json index 24a89f08cc..5b2bd93dda 100644 --- a/docs.package.json +++ b/docs.package.json @@ -135,5 +135,11 @@ "source": ["documentation/overview.md"], "target": "docs/turnkey-solution", "label": "" + }, + { + "repo": "SovereignCloudStack/opendesk-on-scs", + "source": "docs/*", + "target": "user-docs/application-examples", + "label": "OpenDesk on SCS" } ] diff --git a/sidebarsUserDocs.js b/sidebarsUserDocs.js new file mode 100644 index 0000000000..042a9fa382 --- /dev/null +++ b/sidebarsUserDocs.js @@ -0,0 +1,32 @@ +// @ts-check + +/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ +const sidebars = { + userDocs: [ + 'index', + { + type: 'category', + label: 'Application Examples', + items: [ + { + type: 'category', + label: 'OpenDesk on SCS', + link: { + type: 'generated-index' + }, + items: [ + 'application-examples/OpenDesk on SCS/overview', + 'application-examples/OpenDesk on SCS/quickstart', + 'application-examples/OpenDesk on SCS/requirements', + 'application-examples/OpenDesk on SCS/getting_started', + 'application-examples/OpenDesk on SCS/configuration', + 'application-examples/OpenDesk on SCS/user-import', + 'application-examples/OpenDesk on SCS/contribute' + ] + } + ] + } + ] +} + +module.exports = sidebars