Skip to content
Draft
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_4.2.0_macOS_arm64.tar.gz)
🍎 ⚡️ [**Download for macOS Apple Silicon (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.0_macOS_arm64.tar.gz)

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

🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz)
🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.3.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 v4.2.0
Using slack v4.3.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 @@ -102,7 +102,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_4.2.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_4.3.0_windows_64-bit.zip"><strong>Windows (.zip)</strong></a>

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

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

```pwsh
$ slack version
Using slack v4.2.0
Using slack v4.3.0
```

</TabItem>
Expand Down
16 changes: 10 additions & 6 deletions docs/reference/commands/slack_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ slack create [name | agent <name>] [flags]
## Flags

```
-b, --branch string name of git branch to checkout
-h, --help help for create
--list list available app templates
-n, --name string name for your app (overrides the name argument)
--subdir string subdirectory in the template to use as project
-t, --template string template URL for your app
-b, --branch string name of git branch to checkout
-E, --environment string environment to save existing app (local, deployed)
-h, --help help for create
--list list available app templates
-n, --name string name for your app (overrides the name argument)
--subdir string subdirectory in the template to use as project
-t, --template string template URL for your app
```

## Global flags
Expand Down Expand Up @@ -56,6 +57,9 @@ $ slack create --name my-project

# Create from a subdirectory of a template
$ slack create my-project -t org/monorepo --subdir apps/my-app

# Create from template and link to an existing app
$ slack create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local
```

## See also
Expand Down
16 changes: 10 additions & 6 deletions docs/reference/commands/slack_project_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ slack project create [name | agent <name>] [flags]
## Flags

```
-b, --branch string name of git branch to checkout
-h, --help help for create
--list list available app templates
-n, --name string name for your app (overrides the name argument)
--subdir string subdirectory in the template to use as project
-t, --template string template URL for your app
-b, --branch string name of git branch to checkout
-E, --environment string environment to save existing app (local, deployed)
-h, --help help for create
--list list available app templates
-n, --name string name for your app (overrides the name argument)
--subdir string subdirectory in the template to use as project
-t, --template string template URL for your app
```

## Global flags
Expand Down Expand Up @@ -56,6 +57,9 @@ $ slack create --name my-project

# Create from a subdirectory of a template
$ slack create my-project -t org/monorepo --subdir apps/my-app

# Create from template and link to an existing app
$ slack create my-project -t slack-samples/bolt-js-starter-template --app A0123456789 --environment local
```

## See also
Expand Down
Loading