Skip to content

Commit

Permalink
add opendesk docs
Browse files Browse the repository at this point in the history
Signed-off-by: Max Wolfs <mail@maxwolfs.com>
  • Loading branch information
maxwolfs committed Oct 7, 2024
1 parent 516c077 commit aaa30cb
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
/standards/*/*.md
/standards/*/*.mdx
/standards/scs-*.yaml
/user-docs/application-examples

# Dependencies
node_modules
Expand Down
6 changes: 6 additions & 0 deletions docs.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
32 changes: 32 additions & 0 deletions sidebarsUserDocs.js
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit aaa30cb

Please sign in to comment.