@mux/cli 1.0.0-beta.6 → 1.0.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,6 +2,47 @@
|
|
|
2
2
|
|
|
3
3
|
A command-line interface for interacting with the Mux API, designed to provide a first-class development experience for working with Mux services locally.
|
|
4
4
|
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Installation](#installation)
|
|
8
|
+
- [Install via npm](#install-via-npm)
|
|
9
|
+
- [Shell installer](#shell-installer)
|
|
10
|
+
- [Download the binary](#download-the-binary)
|
|
11
|
+
- [Getting Started](#getting-started)
|
|
12
|
+
- [Authentication](#authentication)
|
|
13
|
+
- [Commands](#commands)
|
|
14
|
+
- [Asset Management](#asset-management)
|
|
15
|
+
- [Create Assets](#mux-assets-create)
|
|
16
|
+
- [List Assets](#mux-assets-list)
|
|
17
|
+
- [Get Asset](#mux-assets-get-asset-id)
|
|
18
|
+
- [Update Asset](#mux-assets-update-asset-id)
|
|
19
|
+
- [Delete Asset](#mux-assets-delete-asset-id)
|
|
20
|
+
- [Interactive Management](#mux-assets-manage)
|
|
21
|
+
- [Playback ID Management](#playback-id-management)
|
|
22
|
+
- [Static Renditions Management](#static-renditions-management)
|
|
23
|
+
- [Live Stream Management](#live-stream-management)
|
|
24
|
+
- [Create Live Stream](#mux-live-create)
|
|
25
|
+
- [List Live Streams](#mux-live-list)
|
|
26
|
+
- [Get Live Stream](#mux-live-get-stream-id)
|
|
27
|
+
- [Delete Live Stream](#mux-live-delete-stream-id)
|
|
28
|
+
- [Playback ID Management (Live)](#playback-id-management-1)
|
|
29
|
+
- [Playback ID Lookup](#playback-id-lookup)
|
|
30
|
+
- [Signing Keys & Secure Playback](#signing-keys--secure-playback)
|
|
31
|
+
- [Create Signing Key](#mux-signing-keys-create)
|
|
32
|
+
- [List Signing Keys](#mux-signing-keys-list)
|
|
33
|
+
- [Get Signing Key](#mux-signing-keys-get-key-id)
|
|
34
|
+
- [Delete Signing Key](#mux-signing-keys-delete-key-id)
|
|
35
|
+
- [Sign Playback ID](#mux-sign-playback-id)
|
|
36
|
+
- [Authentication & Environment Management](#authentication--environment-management)
|
|
37
|
+
- [Configuration](#configuration)
|
|
38
|
+
- [Development](#development)
|
|
39
|
+
- [Prerequisites](#prerequisites)
|
|
40
|
+
- [Setup](#setup)
|
|
41
|
+
- [Testing](#testing)
|
|
42
|
+
- [Project Structure](#project-structure)
|
|
43
|
+
- [License](#license)
|
|
44
|
+
- [Support](#support)
|
|
45
|
+
|
|
5
46
|
## Installation
|
|
6
47
|
|
|
7
48
|
### Install via npm
|
|
@@ -50,6 +91,27 @@ sudo mv mux /usr/local/bin/
|
|
|
50
91
|
|
|
51
92
|
The binary is self-contained and has no dependencies.
|
|
52
93
|
|
|
94
|
+
## Shell Completions
|
|
95
|
+
|
|
96
|
+
Enable tab completion for commands, subcommands, and options in your shell:
|
|
97
|
+
|
|
98
|
+
**Bash** (add to `~/.bashrc`):
|
|
99
|
+
```bash
|
|
100
|
+
source <(mux completions bash)
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Zsh** (add to `~/.zshrc`):
|
|
104
|
+
```bash
|
|
105
|
+
source <(mux completions zsh)
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
**Fish** (add to `~/.config/fish/config.fish`):
|
|
109
|
+
```fish
|
|
110
|
+
source (mux completions fish | psub)
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Restart your shell or source the config file to activate completions.
|
|
114
|
+
|
|
53
115
|
## Getting Started
|
|
54
116
|
|
|
55
117
|
### Authentication
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mux/cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.7",
|
|
4
4
|
"description": "Official Mux CLI for interacting with Mux APIs",
|
|
5
5
|
"author": "Mux",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
],
|
|
38
38
|
"packageManager": "pnpm@10.17.1",
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@mux/cli-darwin-arm64": "1.0.0-beta.
|
|
41
|
-
"@mux/cli-darwin-x64": "1.0.0-beta.
|
|
42
|
-
"@mux/cli-linux-x64": "1.0.0-beta.
|
|
43
|
-
"@mux/cli-linux-arm64": "1.0.0-beta.
|
|
40
|
+
"@mux/cli-darwin-arm64": "1.0.0-beta.7",
|
|
41
|
+
"@mux/cli-darwin-x64": "1.0.0-beta.7",
|
|
42
|
+
"@mux/cli-linux-x64": "1.0.0-beta.7",
|
|
43
|
+
"@mux/cli-linux-arm64": "1.0.0-beta.7"
|
|
44
44
|
}
|
|
45
45
|
}
|