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 = { module.exports = {
documentation: { documentation: [
'Tutorials': [ 'user_guide/index'], 'user_guide/index',
{
Tutorials: ['user_guide/index'],
'Reference documentation': ['user_guide/index'], 'Reference documentation': ['user_guide/index'],
'Getting started': [ 'Getting started': [
'user_guide/index', 'user_guide/index',
@ -31,40 +33,21 @@ module.exports = {
], ],
'Unleash SDKs': [ 'Unleash SDKs': [
'sdks/index', 'sdks/index',
'sdks/unleash-proxy',
{
type: 'category',
collapsible: false,
label: 'Server-side SDKs',
items: [
'sdks/go_sdk',
'sdks/java_sdk', 'sdks/java_sdk',
'sdks/node_sdk', 'sdks/node_sdk',
'sdks/php_sdk', 'sdks/dot_net_sdk',
'sdks/go_sdk',
'sdks/python_sdk', 'sdks/python_sdk',
'sdks/ruby_sdk', 'sdks/ruby_sdk',
{ 'sdks/php_sdk',
type: 'link', 'sdks/unleash-proxy',
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/android_proxy_sdk', 'sdks/android_proxy_sdk',
'sdks/proxy-ios',
'sdks/proxy-javascript', 'sdks/proxy-javascript',
'sdks/proxy-react', 'sdks/proxy-react',
], 'sdks/proxy-ios',
},
{ {
type: 'link',
label: 'Community SDKs', label: 'Community SDKs',
type: 'link',
href: '/sdks#community-sdks', href: '/sdks#community-sdks',
}, },
], ],
@ -91,16 +74,14 @@ module.exports = {
'advanced/sso-saml-keycloak', 'advanced/sso-saml-keycloak',
'advanced/sso-google', 'advanced/sso-google',
], ],
'Topic guides': [ 'Topic guides': ['topics/a-b-testing'],
'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: { api: {
Introduction: [ Introduction: [
'api/index', 'api/index',
@ -146,6 +127,6 @@ module.exports = {
'Jira server': [ 'Jira server': [
'integrations/jira_server_plugin_installation', 'integrations/jira_server_plugin_installation',
'integrations/jira_server_plugin_usage', 'integrations/jira_server_plugin_usage',
] ],
}, },
}; };