@evident-ai/cli 0.2.1-dev.a9966f3 → 0.2.1-dev.aa44075

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 CHANGED
@@ -150,10 +150,17 @@ Credentials are stored in:
150
150
  - macOS/Linux: `~/.config/connected/`
151
151
  - Windows: `%APPDATA%\connected\`
152
152
 
153
- Environment variables:
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
- - `CONNECTED_API_URL` - Override the API URL (for development)
156
- - `CONNECTED_TUNNEL_URL` - Override the tunnel relay URL (for development)
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