mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
15f3fba094
* chore(website): talks section * chore: remove dep * chore: iframe react * Update deep-dive-into-verdaccio.md * chore: refactor talks * Update deep-dive-into-verdaccio.md * chore: remove code * Update website.yml * chore: remove old talks ref
109 lines
2.1 KiB
JavaScript
109 lines
2.1 KiB
JavaScript
// @ts-check
|
|
module.exports = {
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
docs: [
|
|
{
|
|
type: "category",
|
|
label: "Introduction",
|
|
items: [
|
|
"installation",
|
|
"what-is-verdaccio",
|
|
"cli",
|
|
{
|
|
type: "category",
|
|
label: "Setting up Verdaccio",
|
|
items: ["cli-registry", "setup-npm", "setup-yarn", "setup-pnpm"]
|
|
},
|
|
"who-is-using",
|
|
"best",
|
|
"docker",
|
|
"protect-your-dependencies",
|
|
"e2e",
|
|
"verdaccio-programmatically",
|
|
"security-policy",
|
|
"logo",
|
|
"third-party",
|
|
{
|
|
type: "category",
|
|
label: "Uses Cases",
|
|
items: ["caching", "linking-remote-registry"]
|
|
},
|
|
"articles"
|
|
]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Features",
|
|
items: [
|
|
"configuration",
|
|
"uplinks",
|
|
"packages",
|
|
"authentication",
|
|
"notifications",
|
|
"logger",
|
|
"webui"
|
|
]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Server",
|
|
items: [
|
|
"server-configuration",
|
|
"reverse-proxy",
|
|
"ssl",
|
|
"windows",
|
|
"iss-server"
|
|
]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Development",
|
|
items: [
|
|
"plugins",
|
|
"dev-plugins",
|
|
{
|
|
type: "category",
|
|
label: "Dev Guides",
|
|
items: ["plugin-generator", "plugin-auth", "plugin-middleware", "plugin-storage"]
|
|
},
|
|
"node-api"
|
|
]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "DevOps",
|
|
items: [
|
|
"kubernetes",
|
|
"ci",
|
|
{
|
|
type: "category",
|
|
label: "Cloud",
|
|
items: ["amazon"]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Tools",
|
|
items: ["ansible", "puppet", "chef"]
|
|
},
|
|
]
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
items: ["aws"]
|
|
}
|
|
],
|
|
api: [
|
|
{
|
|
type: 'category',
|
|
label: 'API Reference',
|
|
items: [
|
|
{
|
|
type: 'autogenerated',
|
|
dirName: 'api'
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|