docs: add synology tutorial (#79)

This commit is contained in:
Bobby DeSimone 2019-04-06 23:35:20 -07:00 committed by GitHub
parent 41c42f590f
commit 7bf257f6e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 230 additions and 3 deletions

View file

@ -16,8 +16,10 @@ module.exports = {
docsDir: "docs",
editLinkText: "Edit this page on GitHub",
lastUpdated: "Last Updated",
nav: [{ text: "Quick Start", link: "/guide/" },
{ text: "Documentation", link: "/docs/" }],
nav: [
{ text: "Quick Start", link: "/guide/" },
{ text: "Documentation", link: "/docs/" }
],
sidebar: {
"/guide/": guideSidebar("Quick Start"),
"/docs/": docsSidebar("Documentation")
@ -30,7 +32,7 @@ function guideSidebar(title) {
{
title,
collapsable: false,
children: ["", "helm", "kubernetes", "from-source"]
children: ["", "helm", "kubernetes", "synology", "from-source"]
}
];
}