2021-07-27 14:52:49 -05:00
|
|
|
// @ts-check
|
|
|
|
module.exports = {
|
|
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Introduction",
|
|
|
|
items: [
|
|
|
|
"installation",
|
2022-10-10 01:00:09 -05:00
|
|
|
"what-is-verdaccio",
|
2021-07-27 14:52:49 -05:00
|
|
|
"cli",
|
2022-06-24 10:10:06 -05:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Setting up Verdaccio",
|
|
|
|
items: ["cli-registry", "setup-npm", "setup-yarn", "setup-pnpm"]
|
|
|
|
},
|
2021-07-27 14:52:49 -05:00
|
|
|
"who-is-using",
|
|
|
|
"best",
|
2021-12-16 13:05:53 -05:00
|
|
|
"docker",
|
2021-07-27 14:52:49 -05:00
|
|
|
"protect-your-dependencies",
|
2022-02-05 13:39:12 -05:00
|
|
|
"e2e",
|
2022-06-02 11:15:22 -05:00
|
|
|
"verdaccio-programmatically",
|
2021-07-27 14:52:49 -05:00
|
|
|
"security-policy",
|
2022-10-10 01:00:09 -05:00
|
|
|
"logo",
|
|
|
|
"third-party",
|
2021-07-27 14:52:49 -05:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Uses Cases",
|
2022-10-10 01:00:09 -05:00
|
|
|
items: ["caching", "linking-remote-registry"]
|
2021-07-27 14:52:49 -05:00
|
|
|
},
|
2022-10-16 07:06:07 -05:00
|
|
|
"articles"
|
2021-07-27 14:52:49 -05:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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",
|
2021-12-16 13:05:53 -05:00
|
|
|
items: [
|
2021-07-27 14:52:49 -05:00
|
|
|
"kubernetes",
|
|
|
|
"ci",
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Cloud",
|
|
|
|
items: ["amazon"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Tools",
|
|
|
|
items: ["ansible", "puppet", "chef"]
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Guides",
|
|
|
|
items: ["aws"]
|
|
|
|
}
|
2022-10-10 01:00:09 -05:00
|
|
|
],
|
|
|
|
api: [
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: 'API Reference',
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: 'autogenerated',
|
|
|
|
dirName: 'api'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2021-07-27 14:52:49 -05:00
|
|
|
]
|
|
|
|
};
|