diff --git a/docs/telemetry.mdx b/docs/telemetry.mdx index dba2dc6d5c..f71255f0dd 100644 --- a/docs/telemetry.mdx +++ b/docs/telemetry.mdx @@ -26,6 +26,25 @@ The following usage information is collected and reported: ## How to Opt Out +### IDE extensions + You can disable anonymous telemetry by toggling "Allow Anonymous Telemetry" off in the user settings. +#### VS Code + 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). + +### CLI + +For `cn`, the Continue CLI, set the environment variable `CONTINUE_CLI_ENABLE_TELEMETRY=0` before running commands: + +```bash +export CONTINUE_CLI_ENABLE_TELEMETRY=0 +cn +``` + +Or run it inline: + +```bash +CONTINUE_CLI_ENABLE_TELEMETRY=0 cn +```