added CLI to sidebar and navbar

This commit is contained in:
Jordan Violet
2023-02-28 13:36:27 -05:00
parent 072035f310
commit b35c626907
6 changed files with 17 additions and 6 deletions

View File

@@ -16,6 +16,8 @@ module.exports = {
{to: '/idn/api/beta', label: 'Beta APIs', className: 'indent'}, {to: '/idn/api/beta', label: 'Beta APIs', className: 'indent'},
{to: '#', label: 'Documentation', className: 'navbar__section'}, {to: '#', label: 'Documentation', className: 'navbar__section'},
{to: 'idn/docs', label: 'IDN Documentation', className: 'indent'}, {to: 'idn/docs', label: 'IDN Documentation', className: 'indent'},
{to: '#', label: 'Tools', className: 'navbar__section'},
{to: 'idn/tools/cli', label: 'CLI', className: 'indent'},
{to: '#', label: 'External Links', className: 'navbar__section'}, {to: '#', label: 'External Links', className: 'navbar__section'},
{ {
href: 'https://documentation.sailpoint.com', href: 'https://documentation.sailpoint.com',

View File

@@ -60,5 +60,11 @@ const sidebars = {
dirName: 'docs', dirName: 'docs',
}, },
], ],
sdkSidebar: [
{
type: 'autogenerated',
dirName: 'tools',
},
],
}; };
module.exports = sidebars; module.exports = sidebars;

View File

@@ -0,0 +1,3 @@
{
"collapsible": false
}

View File

@@ -7,7 +7,7 @@ sidebar_position: 1
sidebar_class_name: cli sidebar_class_name: cli
keywords: ['cli'] keywords: ['cli']
description: Learn how to use the SailPoint CLI in this guide. description: Learn how to use the SailPoint CLI in this guide.
slug: /products/tools/cli slug: /tools/cli
tags: ['CLI'] tags: ['CLI']
--- ---
@@ -61,7 +61,7 @@ Then make sure you can run the `sail` command.
sail sail
``` ```
<img src="./assets/img/vhs/MacOSAndLinux.gif" alt="linux make gif"> [Linux Make Gif](./assets/img/vhs/MacOSAndLinux.gif)
To manually install the CLI on **Windows**, open PowerShell as an administrator, navigate to the project directory, and run To manually install the CLI on **Windows**, open PowerShell as an administrator, navigate to the project directory, and run
this command: this command:
@@ -108,7 +108,7 @@ If you are using a **PAT**, run this command:
sail configure pat sail configure pat
``` ```
<img src="./assets/img/vhs/configure/configure-pat.gif" alt="configure PAT"> [configure PAT](./assets/img/vhs/configure/configure-pat.gif)
If you are using an **OAuth client**, run this command: If you are using an **OAuth client**, run this command:
@@ -116,7 +116,7 @@ If you are using an **OAuth client**, run this command:
sail configure oauth sail configure oauth
``` ```
<img src="./assets/img/vhs/configure/configure-oauth.gif" alt="configure OAuth"> [configure OAuth](./assets/img/vhs/configure/configure-oauth.gif)
### Manual configuration ### Manual configuration

View File

@@ -23,7 +23,7 @@ sail transform list
This will produce a table of the available transforms. This will produce a table of the available transforms.
<img src="./../../assets/img/vhs/transform/transform-list.gif" alt="transform list"> [transform list](./../../assets/img/vhs/transform/transform-list.gif)
## Download transforms ## Download transforms
@@ -33,7 +33,7 @@ Run the following command to download all of the transforms in your tenant and s
sail transform download -d transform_files sail transform download -d transform_files
``` ```
<img src="./../../assets/img/vhs/transform/transform-download.gif" alt="transform download"> [transform download](./../../assets/img/vhs/transform/transform-download.gif)
This command will overwrite any existing files with the same name, so take care when running this in a directory that has modified transforms that have not yet been saved. This command will overwrite any existing files with the same name, so take care when running this in a directory that has modified transforms that have not yet been saved.