You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardexpand all lines: svix-cli/README.md
+14-14
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,14 @@ These scripts will install the binaries to `~/.svix/bin` and also add this direc
37
37
38
38
#### Manually
39
39
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
41
41
having to install anything.
42
42
43
43
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`.
45
45
46
46
> [!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`.
48
48
49
49
50
50
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
55
55
Installing the Svix CLI provides access to the `svix` command.
56
56
57
57
```sh
58
-
svix-cli [command]
58
+
svix [command]
59
59
60
-
# Run `svix-cli help` for information about the available commands
61
-
svix-clihelp
60
+
# Run `svix help` for information about the available commands
61
+
svix help
62
62
63
63
# 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
65
65
```
66
66
67
67
@@ -79,7 +79,7 @@ change any NAT configuration on your network.
79
79
Example:
80
80
81
81
```sh
82
-
svix-cli listen http://localhost:8000/webhook/
82
+
svix listen http://localhost:8000/webhook/
83
83
```
84
84
85
85
Output:
@@ -104,13 +104,13 @@ to `http://localhost:8000/webhook/`.
104
104
# Set your Auth Token temporarily via the SVIX_AUTH_TOKEN environment variable
105
105
export SVIX_AUTH_TOKEN=<MY-AUTH-TOKEN>
106
106
# 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
108
108
109
109
# Create an Application with the name "Demo"
110
-
svix-cli application create '{ "name": "demo" }'
110
+
svix application create '{ "name": "demo" }'
111
111
112
112
# List Applications
113
-
svix-cli application list --limit 2 --iterator some_iterator
113
+
svix application list --limit 2 --iterator some_iterator
114
114
```
115
115
116
116
## Commands
@@ -138,16 +138,16 @@ The Svix CLI supports the following commands:
138
138
139
139
Shell completion scripts are provided for `bash`, `elvish`, `fish`, `powershell`, and `zsh`.
140
140
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>`.
142
142
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`.
144
144
145
145
> [!TIP]
146
146
> You can source the completion script automatically in your shell rc file.
0 commit comments