@rudderhq/cli 0.7.19-canary.1 → 0.7.20-canary.0
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 +11 -1
- package/dist/index.js +1490 -696
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,12 +77,22 @@ Rudder is the coordination layer, not the model provider. Run agents with the lo
|
|
|
77
77
|
|
|
78
78
|
### Try Rudder
|
|
79
79
|
|
|
80
|
-
The fastest path
|
|
80
|
+
The fastest path prepares the matching persistent CLI/runtime and opens Rudder
|
|
81
|
+
as a per-user app:
|
|
81
82
|
|
|
82
83
|
```bash
|
|
83
84
|
npx @rudderhq/cli@latest start
|
|
84
85
|
```
|
|
85
86
|
|
|
87
|
+
On Windows, `start` reads (but never changes) Smart App Control. When enforcement
|
|
88
|
+
is on and the Rudder Desktop channel is still unsigned, it creates a Start Menu
|
|
89
|
+
shortcut and opens the same local workspace in Microsoft Edge app mode instead
|
|
90
|
+
of installing an executable that Windows may block. Use
|
|
91
|
+
`--desktop-mode native` to explicitly retain the portable Electron path or
|
|
92
|
+
`--desktop-mode browser` to select the compatibility path yourself. This
|
|
93
|
+
loopback-only fallback is an un-packaged `local_trusted` client and does not use
|
|
94
|
+
the packaged Desktop Account Gate.
|
|
95
|
+
|
|
86
96
|
For a server or headless host where the Desktop app should not be installed,
|
|
87
97
|
prepare only the server runtime and persistent CLI:
|
|
88
98
|
|