@rudderhq/cli 0.3.6-canary.9 → 0.4.1
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 +8 -0
- package/dist/index.js +415 -76
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -84,10 +84,18 @@ The fastest path installs the per-user portable Rudder Desktop app and prepares
|
|
|
84
84
|
npx @rudderhq/cli@latest start
|
|
85
85
|
```
|
|
86
86
|
|
|
87
|
+
For a server or headless host where the Desktop app should not be installed,
|
|
88
|
+
prepare only the server runtime and persistent CLI:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
npx @rudderhq/cli@latest start --server-only
|
|
92
|
+
```
|
|
93
|
+
|
|
87
94
|
After the persistent CLI is available, the direct `rudder` form is the same command surface:
|
|
88
95
|
|
|
89
96
|
```bash
|
|
90
97
|
rudder start
|
|
98
|
+
rudder start --server-only
|
|
91
99
|
```
|
|
92
100
|
|
|
93
101
|
### Develop Rudder
|