Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/guides/installing-the-slack-cli-for-mac-and-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ Manual installation allows you to customize certain paths used when installing t

**2\. Download the** `slack` **CLI installer for your environment.**

🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_macOS_arm64.tar.gz)
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.15.0_macOS_arm64.tar.gz)

🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_macOS_amd64.tar.gz)
🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.15.0_macOS_amd64.tar.gz)

🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_linux_64-bit.tar.gz)
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_3.15.0_linux_64-bit.tar.gz)

**3\. Add the** `slack` **CLI to your path.**

Expand All @@ -121,7 +121,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change

```sh
$ slack version
Using slack v3.14.0
Using slack v3.15.0
```

</TabItem>
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/installing-the-slack-cli-for-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Manual installation allows you to customize certain paths used when installing t

**2\. Download the** `slack` **CLI installer for your environment.**

<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.14.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>
<ts-icon class="ts_icon_windows"></ts-icon> &nbsp; <a href="https://downloads.slack-edge.com/slack-cli/slack_cli_3.15.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>

**3\. Add the** `slack` **CLI to your path.**

Expand All @@ -104,7 +104,7 @@ We recommend using an alias if another `slack` binary exists. To do this, change

```pwsh
$ slack version
Using slack v3.14.0
Using slack v3.15.0
```

</TabItem>
Expand Down
1 change: 1 addition & 0 deletions docs/reference/commands/slack.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ $ slack docs # Open Slack developer docs
* [slack project](slack_project) - Create, manage, and doctor a project
* [slack run](slack_run) - Start a local server to develop and run the app locally
* [slack samples](slack_samples) - List available sample apps
* [slack sandbox](slack_sandbox) - Manage developer sandboxes
* [slack trigger](slack_trigger) - List details of existing triggers
* [slack uninstall](slack_uninstall) - Uninstall the app from a team
* [slack upgrade](slack_upgrade) - Checks for available updates to the CLI or SDK
Expand Down
44 changes: 44 additions & 0 deletions docs/reference/commands/slack_sandbox.md
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧪 note: This is experimental and marked as such in docs, but it'd be interesting to avoid generating these docs until a stable release of the sandbox later!

Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# `slack sandbox`

Manage developer sandboxes

## Description

Manage Slack developer sandboxes without leaving your terminal.
Use the --team flag to select the authentication to use for these commands.

Prefer a UI? Head over to
[https://api.slack.com/developer-program/sandboxes](https://api.slack.com/developer-program/sandboxes)

New to the Developer Program? Sign up at
[https://api.slack.com/developer-program/join](https://api.slack.com/developer-program/join)

```
slack sandbox <subcommand> [flags] --experiment=sandboxes
```

## Flags

```
-h, --help help for sandbox
```

## Global flags

```
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
-f, --force ignore warnings and continue executing command
--no-color remove styles and formatting from outputs
-s, --skip-update skip checking for latest version of CLI
-w, --team string select workspace or organization by team name or ID
--token string set the access token associated with a team
-v, --verbose print debug logging and additional info
```

## See also

* [slack](slack) - Slack command-line tool
* [slack sandbox list](slack_sandbox_list) - List developer sandboxes

47 changes: 47 additions & 0 deletions docs/reference/commands/slack_sandbox_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# `slack sandbox list`

List developer sandboxes

## Description

List details about your developer sandboxes.

The listed developer sandboxes belong to a developer program account
that matches the email address of the authenticated user.

```
slack sandbox list [flags]
```

## Flags

```
-h, --help help for list
--status string Filter by status: active, archived
```

## Global flags

```
-a, --app string use a specific app ID or environment
--config-dir string use a custom path for system config directory
-e, --experiment strings use the experiment(s) in the command
-f, --force ignore warnings and continue executing command
--no-color remove styles and formatting from outputs
-s, --skip-update skip checking for latest version of CLI
-w, --team string select workspace or organization by team name or ID
--token string set the access token associated with a team
-v, --verbose print debug logging and additional info
```

## Examples

```
$ slack sandbox list # List developer sandboxes
$ slack sandbox list --status active # List active sandboxes only
```

## See also

* [slack sandbox](slack_sandbox) - Manage developer sandboxes

Loading