I want to run the Tabby server on my local MacBook, but the code I'm working on is on a remote server using VSCode + remote SSH extension. By default, with VSCode + remote SSH, the Tabby client is looking for a Caddy server on the remote machine. How can I configure VSCode to run the Tabby client locally?
clement-igonet
Asked on Nov 19, 2023
To run the Tabby client locally in VSCode with the remote SSH extension, you can set the remote.extensionKind
configuration in your VSCode settings. Add the following entry to your settings.json file:
"remote.extensionKind": {
"TabbyML.vscode-tabby": ["ui"]
}
This will configure the Tabby extension to run locally. The extension ID for Tabby is TabbyML.vscode-tabby
.