@evident-ai/cli 0.2.1-dev.de4207d → 0.2.1-dev.f6e00c9
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 +10 -3
- package/dist/index.js +929 -1178
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -150,10 +150,17 @@ Credentials are stored in:
|
|
|
150
150
|
- macOS/Linux: `~/.config/connected/`
|
|
151
151
|
- Windows: `%APPDATA%\connected\`
|
|
152
152
|
|
|
153
|
-
|
|
153
|
+
By default the CLI targets the production Evident platform. To point it at a
|
|
154
|
+
different backend (local dev, a preview environment, …), use the global flags:
|
|
154
155
|
|
|
155
|
-
-
|
|
156
|
-
|
|
156
|
+
- `--endpoint <url>` - Evident REST API base URL (e.g. `http://localhost:3001`).
|
|
157
|
+
A trailing `/v1` is optional — it's added automatically.
|
|
158
|
+
- `--tunnel <url>` - Tunnel WebSocket URL (e.g. `ws://localhost:8787`).
|
|
159
|
+
|
|
160
|
+
Equivalent environment variables (take precedence over the flags):
|
|
161
|
+
|
|
162
|
+
- `EVIDENT_API_URL` - Override the API URL
|
|
163
|
+
- `EVIDENT_TUNNEL_URL` - Override the tunnel relay URL
|
|
157
164
|
|
|
158
165
|
## Development
|
|
159
166
|
|