@tryarcanist/cli 0.1.137 → 0.1.138
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ Supported environment variables:
|
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
54
|
export ARCANIST_TOKEN=arc_...
|
|
55
|
-
export ARCANIST_API_URL=https://
|
|
55
|
+
export ARCANIST_API_URL=https://api.tryarcanist.com
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
`--token` and `--api-url` are available for one-off invocations. Prefer `ARCANIST_TOKEN` over `--token` for persistent use; CLI flags can appear in shell history and process lists.
|
|
@@ -64,7 +64,7 @@ Non-local API URLs must use HTTPS and must not embed credentials.
|
|
|
64
64
|
```bash
|
|
65
65
|
arcanist --json
|
|
66
66
|
arcanist --quiet
|
|
67
|
-
arcanist --api-url https://
|
|
67
|
+
arcanist --api-url https://api.tryarcanist.com
|
|
68
68
|
arcanist --token arc_...
|
|
69
69
|
arcanist --no-color
|
|
70
70
|
```
|
|
@@ -100,7 +100,7 @@ Mutation commands send an `Idempotency-Key` header. The CLI does not auto-retry
|
|
|
100
100
|
```bash
|
|
101
101
|
arcanist auth login
|
|
102
102
|
printf "arc_..." | arcanist auth login --token-stdin
|
|
103
|
-
arcanist auth login --api-url https://
|
|
103
|
+
arcanist auth login --api-url https://api.tryarcanist.com
|
|
104
104
|
```
|
|
105
105
|
|
|
106
106
|
### `arcanist auth whoami`
|