From 8ca876259181e9b529250ddfb46281ef6468dd0b Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 22 Jul 2021 19:10:24 +0000 Subject: [PATCH] chore: add docs manifest --- docs/manifest.json | 90 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 docs/manifest.json diff --git a/docs/manifest.json b/docs/manifest.json new file mode 100644 index 00000000..030f0178 --- /dev/null +++ b/docs/manifest.json @@ -0,0 +1,90 @@ +{ + "versions": [ + "v3.11.0", "v3.10.2" + ], + "routes": [ + { + "title": "Home", + "description": "Learn how to install and run code-server.", + "path": "./README.md", + "icon": "" + }, + { + "title": "Requirements", + "description": "Learn about what you need to run code-server.", + "icon": "", + "path": "./requirements.md" + }, + { + "title": "Install", + "description": "How to install code-server.", + "icon": "", + "path": "./install.md", + "children": [ + { + "title": "npm", + "description": "How to install code-server using npm or yarn", + "path": "./npm.md" + } + ] + }, + { + "title": "Usage", + "description": "How to set up and use code-server.", + "icon": "", + "path": "./guide.md", + "children": [ + { + "title": "iPad", + "description": "How to access your code-server installation using an iPad.", + "path": "./ipad.md" + }, + { + "title": "Termux", + "description": "How to install Termux to run code-server on an Android device.", + "path": "./termux.md" + } + ] + }, + { + "title": "Upgrade", + "description": "How to upgrade code-server.", + "icon": "", + "path": "./upgrade.md" + }, + { + "title": "FAQ", + "description": "Frequently asked questions on installing and running code-server.", + "icon": "", + "path": "./FAQ.md" + }, + { + "title": "Contributing", + "description": "How to contribute to code-server.", + "icon": "", + "path": "./CONTRIBUTING.md", + "children": [ + { + "title": "Code of conduct", + "description": "Coder expects contributors to code-server to behave in a manner that creates an open and welcoming environment.", + "path": "./CODE_OF_CONDUCT.md" + }, + { + "title": "Maintenance", + "description": "Learn about the workflow followed by code-server's maintainers.", + "path": "./MAINTAINING.md" + }, + { + "title": "Triage", + "description": "How the maintainers triage issues with code-server.", + "path": "./triage.md" + }, + { + "title": "Security", + "description": "Learn about the tools used to detect vulnerabilities in code-server, and how you can report vulnerabilities.", + "path": "./SECURITY.md" + } + ] + } + ] +}