Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Witness website submodule #1

Merged
merged 13 commits into from
Feb 15, 2024
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "docs-website"]
path = docs-website
url = https://github.com/chaosinthecrd/in-toto-website
1 change: 1 addition & 0 deletions docs-website
Submodule docs-website added at 037c78
59 changes: 59 additions & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
// @ts-check

/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{
type: 'doc',
label: 'About',
id: 'README',
},
{
type: 'category',
label: 'Tutorials',
items: [
{
type: 'autogenerated',
dirName: 'docs/tutorials',
},
],
},
{
type: 'category',
label: 'Concepts',
items: [
{
type: 'autogenerated',
dirName: 'docs/concepts',
},
],
},
{
type: 'category',
label: 'Attestor Types',
items: [
{
type: 'autogenerated',
dirName: 'docs/attestors',
},
],
},
{
type: 'doc',
label: 'Command Line Reference',
id: 'docs/commands',
},
{
type: 'doc',
label: 'New Contributor Guide',
id: 'CONTRIBUTING',
},
{
type: 'doc',
label: 'Code of Conduct',
id: 'CODE_OF_CONDUCT',
},
],
}

module.exports = sidebars
Loading