Connects your JetBrains IDE to Coder workspaces
To install this plugin using JetBrains Toolbox, follow the steps below.
- Install JetBrains Toolbox. Make sure it's the
2.6.0.40284
release or above. - Launch the Toolbox app and sign in with your JetBrains account (if needed).
You can quickly install the plugin using this JetBrains hyperlink:
👉 jetbrains://gateway/com.coder.toolbox
This will open JetBrains Toolbox and prompt you to install the Coder Toolbox plugin automatically.
Alternatively, you can paste jetbrains://gateway/com.coder.toolbox
into a browser.
There are two ways Coder Toolbox plugin can be installed. The first option is to manually download the plugin artifact from JetBrains Marketplace or from Coder's Github Release page.
The next step is to copy the zip content to one of the following locations, depending on your OS:
- Windows:
%LocalAppData%/JetBrains/Toolbox/plugins/com.coder.toolbox
- macOS:
~/Library/Caches/JetBrains/Toolbox/plugins/com.coder.toolbox
- Linux:
~/.local/share/JetBrains/Toolbox/plugins/com.coder.toolbox
Alternatively, you can install it using the Gradle tasks included in the project:
./gradlew cleanAll build copyPlugin
Make sure Toolbox is closed before running the command.
You can use specially crafted JetBrains Gateway URIs to automatically:
-
Open Toolbox
-
Install the Coder Toolbox plugin (if not already installed)
-
Connect to a specific Coder deployment using a URL and a token.
-
Select a running workspace
-
Install a specified JetBrains IDE on that Workspace
-
Open a project folder directly in the remote IDE
jetbrains://gateway/com.coder.toolbox?url=https%3A%2F%2Fdev.coder.com&token=zeoX4SbSpP-j2qGpajkdwxR9jBdcekXS2&workspace=bobiverse-bob&agent=dev&ide_product_code=GO&ide_build_number=241.23774.119&folder=%2Fhome%2Fcoder%2Fworkspace%2Fhello-world-rs
jetbrains://gateway/com.coder.toolbox?url=https%3A%2F%2Fj5gj2r1so5nbi.pit-1.try.coder.app%2F&token=gqEirOoI1U-FfCQ6uj8iOLtybBIk99rr8&workspace=bobiverse-riker&agent=dev&ide_product_code=RR&ide_build_number=243.26053.17&folder=%2Fhome%2Fcoder%2Fworkspace%2Fhello-world-rs
jetbrains://gateway/com.coder.toolbox
?url=http(s)://<your-coder-deployment>
&token=<auth-token>
&workspace=<workspace-name>
&agent_id=<agent--id>
&ide_product_code=<IDE-code>
&ide_build_number=<IDE-build>
&folder=<absolute-path-to-a-project-folder>
Query param | Description | Mandatory |
---|---|---|
url | Your Coder deployment URL (encoded) | Yes |
token | Coder authentication token | Yes |
workspace | Name of the Coder workspace to connect to. | Yes |
agent_id | ID of the agent associated with the workspace | No |
ide_product_code | JetBrains IDE product code (e.g., GO for GoLand, RR for Rider) | No |
ide_build_number | Specific build number of the JetBrains IDE to install on the workspace | No |
folder | Absolute path to the project folder to open in the remote IDE (URL-encoded) | No |
If only a single agent is available, specifying an agent ID is optional. However, if multiple agents exist, you must provide either the ID to target a specific one. Note that this version of the Coder Toolbox plugin does not automatically start agents if they are offline, so please ensure the selected agent is running before proceeding.
If ide_product_code
and ide_build_number
is missing, Toolbox will only open and highlight the workspace environment
page. Coder Toolbox will attempt to start the workspace if it’s not already running; however, for the most reliable
experience, it’s recommended to ensure the workspace is running prior to initiating the connection.
This section explains how to set up a local proxy (without authentication which is not yet supported) and verify that the plugin’s REST client works correctly when routed through it.
We’ll use mitmproxy for this — it can act as both an HTTP and SOCKS5 proxy with SSL interception.
- Follow the mitmproxy Install Guide steps for your OS.
- Start the proxy:
mitmweb --ssl-insecure --set stream_large_bodies="10m"
mitmproxy can do HTTP and SOCKS5 proxying. To configure one or the other:
- Open http://127.0.0.1:8081 in browser;
- Navigate to
Options -> Edit Options
- Update the
Mode
field toregular
in order to activate HTTP/HTTPS or tosocks5
- Proxy authentication can be enabled by updating the
proxyauth
tousername:password
- Start Toolbox
- From Toolbox hexagonal menu icon go to
Settings -> Proxy
- There are two options, to use system proxy settings or to manually configure the proxy details.
- If we go manually, add
127.0.0.1
to the host and port8080
for HTTP/HTTPS or1080
for SOCKS5. - Before authenticating to the Coder deployment we need to tell the plugin where can we find mitmproxy
certificates. In Coder's Settings page, set the
TLS CA path
to~/.mitmproxy/mitmproxy-ca-cert.pem
- Check that the changelog lists all the important changes.
- Update the gradle.properties version.
- Publish the resulting draft release after validating it.
- Merge the resulting changelog PR.