Skip to content

Commit fa7fcc6

Browse files
authored
Merge pull request #8064 from rossigee/docs/cli-telemetry-opt-out
docs: add CLI telemetry opt-out instructions
2 parents 4485a73 + 9e929ce commit fa7fcc6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

docs/telemetry.mdx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,25 @@ The following usage information is collected and reported:
2626

2727
## How to Opt Out
2828

29+
### IDE extensions
30+
2931
You can disable anonymous telemetry by toggling "Allow Anonymous Telemetry" off in the user settings.
3032

33+
#### VS Code
34+
3135
Alternatively in VS Code, you can disable telemetry through your VS Code settings by unchecking the "Continue: Telemetry Enabled" box (this will override the Settings Page settings). VS Code settings can be accessed with `File` > `Preferences` > `Settings` (or use the keyboard shortcut `ctrl` + `,` on Windows/Linux or `cmd` + `,` on macOS).
36+
37+
### CLI
38+
39+
For `cn`, the Continue CLI, set the environment variable `CONTINUE_CLI_ENABLE_TELEMETRY=0` before running commands:
40+
41+
```bash
42+
export CONTINUE_CLI_ENABLE_TELEMETRY=0
43+
cn <your prompt>
44+
```
45+
46+
Or run it inline:
47+
48+
```bash
49+
CONTINUE_CLI_ENABLE_TELEMETRY=0 cn <your prompt>
50+
```

0 commit comments

Comments
 (0)