Skip to content

Commit a86633c

Browse files
authored
CLI: rename the binary svix-cli -> svix (#1605)
We flip-flopped on this. For now, let's call the binary `svix`. `dist plan` shows that the various build artifacts will still be named `svix-cli` which is what we want. ``` $ dist plan announcing v1.45.0 svix-cli 1.45.0 source.tar.gz [checksum] source.tar.gz.sha256 svix-cli-installer.sh svix-cli-installer.ps1 sha256.sum svix-cli-aarch64-apple-darwin-update svix-cli-aarch64-apple-darwin.tar.xz [bin] svix [misc] LICENSE, README.md [checksum] svix-cli-aarch64-apple-darwin.tar.xz.sha256 svix-cli-aarch64-unknown-linux-gnu-update svix-cli-aarch64-unknown-linux-gnu.tar.xz [bin] svix [misc] LICENSE, README.md [checksum] svix-cli-aarch64-unknown-linux-gnu.tar.xz.sha256 svix-cli-x86_64-apple-darwin-update svix-cli-x86_64-apple-darwin.tar.xz [bin] svix [misc] LICENSE, README.md [checksum] svix-cli-x86_64-apple-darwin.tar.xz.sha256 svix-cli-x86_64-pc-windows-msvc-update svix-cli-x86_64-pc-windows-msvc.zip [bin] svix.exe [misc] LICENSE, README.md [checksum] svix-cli-x86_64-pc-windows-msvc.zip.sha256 svix-cli-x86_64-pc-windows-msvc.msi [bin] svix.exe [checksum] svix-cli-x86_64-pc-windows-msvc.msi.sha256 svix-cli-x86_64-unknown-linux-musl-update svix-cli-x86_64-unknown-linux-musl.tar.xz [bin] svix [misc] LICENSE, README.md [checksum] svix-cli-x86_64-unknown-linux-musl.tar.xz.sha256 ``` The one wart with this change is how folks installing via the script installers will end up with the main binary named `svix` and an updater called `svix-cli-updater`, but in this case I think that's okay.
2 parents 18cc353 + 7ea9a66 commit a86633c

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

svix-cli/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ path-guid = "2E3464D5-DAC5-4C00-A074-250BB17BBBE2"
2020
license = false
2121
eula = false
2222

23+
[[bin]]
24+
name = "svix"
25+
path = "src/main.rs"
26+
2327
[dependencies]
2428
anyhow = "1.0.94"
2529
base64 = "0.22.1"

svix-cli/README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ These scripts will install the binaries to `~/.svix/bin` and also add this direc
3737

3838
#### Manually
3939

40-
Additionally, you can select executables to download directly from [our releases page](https://github.com/svix/svix-cli/releases), and use them as is without
40+
Additionally, you can select executables to download directly from [our releases page](https://github.com/svix/svix-webhooks/releases), and use them as is without
4141
having to install anything.
4242

4343
1. Download and extract the archive for your operating system.
44-
2. Run the `svix-cli` executable from the command line: `./svix-cli help`.
44+
2. Run the `svix` executable from the command line: `./svix help`.
4545

4646
> [!NOTE]
47-
> You may need to allow execution by running `chmod +x svix-cli`.
47+
> You may need to allow execution by running `chmod +x svix`.
4848
4949

5050
You can also put the binaries anywhere in your `PATH` so you can run the command from anywhere without needing to provide its full path. On macOS or Linux you can achieve this by moving the executable to `/usr/local/bin` or `/usr/bin`.
@@ -55,13 +55,13 @@ You can also put the binaries anywhere in your `PATH` so you can run the command
5555
Installing the Svix CLI provides access to the `svix` command.
5656

5757
```sh
58-
svix-cli [command]
58+
svix [command]
5959

60-
# Run `svix-cli help` for information about the available commands
61-
svix-cli help
60+
# Run `svix help` for information about the available commands
61+
svix help
6262

6363
# or add the `--help` flag to any command for a more detailed description and list of flags
64-
svix-cli [command] --help
64+
svix [command] --help
6565
```
6666

6767

@@ -79,7 +79,7 @@ change any NAT configuration on your network.
7979
Example:
8080

8181
```sh
82-
svix-cli listen http://localhost:8000/webhook/
82+
svix listen http://localhost:8000/webhook/
8383
```
8484

8585
Output:
@@ -104,13 +104,13 @@ to `http://localhost:8000/webhook/`.
104104
# Set your Auth Token temporarily via the SVIX_AUTH_TOKEN environment variable
105105
export SVIX_AUTH_TOKEN=<MY-AUTH-TOKEN>
106106
# or to persistently store your auth token in a config file run
107-
svix-cli login # interactively configure your Svix API credentials
107+
svix login # interactively configure your Svix API credentials
108108

109109
# Create an Application with the name "Demo"
110-
svix-cli application create '{ "name": "demo" }'
110+
svix application create '{ "name": "demo" }'
111111

112112
# List Applications
113-
svix-cli application list --limit 2 --iterator some_iterator
113+
svix application list --limit 2 --iterator some_iterator
114114
```
115115

116116
## Commands
@@ -138,16 +138,16 @@ The Svix CLI supports the following commands:
138138

139139
Shell completion scripts are provided for `bash`, `elvish`, `fish`, `powershell`, and `zsh`.
140140

141-
To generate a script for your shell type `svix-cli completion <SHELL NAME>`.
141+
To generate a script for your shell type `svix completion <SHELL NAME>`.
142142

143-
For detailed instructions on configuring completions for your shell run `svix-cli completion --help`.
143+
For detailed instructions on configuring completions for your shell run `svix completion --help`.
144144

145145
> [!TIP]
146146
> You can source the completion script automatically in your shell rc file.
147147
>
148148
> Example:
149149
> ```sh
150-
> eval "$(svix-cli completion bash)"
150+
> eval "$(svix completion bash)"
151151
> ```
152152
153153

svix-cli/wix/main.wxs

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123
<Component Id='binary0' Guid='*'>
124124
<File
125125
Id='exe0'
126-
Name='svix-cli.exe'
126+
Name='svix.exe'
127127
DiskId='1'
128-
Source='$(var.CargoTargetBinDir)\svix-cli.exe'
128+
Source='$(var.CargoTargetBinDir)\svix.exe'
129129
KeyPath='yes'/>
130130
</Component>
131131
</Directory>

0 commit comments

Comments
 (0)