kylon-cli 0.3.2-next.534 → 0.3.3-next.535
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 +17 -1
- package/dist/kylon-bundle.mjs +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,7 +6,23 @@ Requires Node.js 22.15.0 or newer.
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
-
The
|
|
9
|
+
The recommended install is the hosted script (macOS/Linux):
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
curl -fsSL https://api.kylon.io/install.sh | sh
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
It installs the pinned CLI bundle under `~/.kylon` (no sudo; a machine
|
|
16
|
+
without Node.js gets a private, checksum-verified runtime under
|
|
17
|
+
`~/.kylon/runtime` that only Kylon uses), puts `kylon` on your PATH, records
|
|
18
|
+
the serving environment as the default `--server-url`, and chains straight
|
|
19
|
+
into `kylon login`. Rerunning it is safe. Non-production deployments serve
|
|
20
|
+
the same script from their own API origin (for example
|
|
21
|
+
`https://api.purework.ai/install.sh` installs `@next` and logs into dev).
|
|
22
|
+
`KYLON_INSTALL_NO_LOGIN=1` installs without starting the login;
|
|
23
|
+
`KYLON_INSTALL_NO_MODIFY_PATH=1` leaves shell profiles untouched.
|
|
24
|
+
|
|
25
|
+
The CLI is also published to npm as
|
|
10
26
|
[`kylon-cli`](https://www.npmjs.com/package/kylon-cli). The Web UI provides
|
|
11
27
|
two distinct copy-paste entry points:
|
|
12
28
|
|