1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-24 01:18:01 +02:00

docs: add introduction as separate entry

This commit is contained in:
Thomas Heartman 2022-01-25 12:20:53 +01:00
parent 24e614c977
commit b3c28de0bb

View File

@ -10,8 +10,10 @@
*/
module.exports = {
documentation: {
'Tutorials': [ 'user_guide/index'],
documentation: [
'user_guide/index',
{
Tutorials: ['user_guide/index'],
'Reference documentation': ['user_guide/index'],
'Getting started': [
'user_guide/index',
@ -31,40 +33,21 @@ module.exports = {
],
'Unleash SDKs': [
'sdks/index',
'sdks/unleash-proxy',
{
type: 'category',
collapsible: false,
label: 'Server-side SDKs',
items: [
'sdks/go_sdk',
'sdks/java_sdk',
'sdks/node_sdk',
'sdks/php_sdk',
'sdks/dot_net_sdk',
'sdks/go_sdk',
'sdks/python_sdk',
'sdks/ruby_sdk',
{
type: 'link',
href: 'https://github.com/unleash/unleash-client-rust',
label: 'Rust SDK',
},
'sdks/dot_net_sdk',
],
},
{
type: 'category',
collapsible: false,
label: 'Client-side SDKs',
items: [
'sdks/php_sdk',
'sdks/unleash-proxy',
'sdks/android_proxy_sdk',
'sdks/proxy-ios',
'sdks/proxy-javascript',
'sdks/proxy-react',
],
},
'sdks/proxy-ios',
{
type: 'link',
label: 'Community SDKs',
type: 'link',
href: '/sdks#community-sdks',
},
],
@ -91,16 +74,14 @@ module.exports = {
'advanced/sso-saml-keycloak',
'advanced/sso-google',
],
'Topic guides': [
'topics/a-b-testing'
'Topic guides': ['topics/a-b-testing'],
'How-to guides': [
'how-to/how-to-add-strategy-constraints',
'how-to/how-to-define-custom-context-fields',
'how-to/how-to-use-custom-strategies',
],
"How-to guides": [
"how-to/how-to-add-strategy-constraints",
"how-to/how-to-create-and-assign-custom-project-roles",
"how-to/how-to-define-custom-context-fields",
"how-to/how-to-use-custom-strategies",
]
},
],
api: {
Introduction: [
'api/index',
@ -146,6 +127,6 @@ module.exports = {
'Jira server': [
'integrations/jira_server_plugin_installation',
'integrations/jira_server_plugin_usage',
]
],
},
};