* Add JetBrains Gateway doc Signed-off-by: Spike Curtis <spike@coder.com> * Added GitHub issue to track Gateway failure Signed-off-by: Spike Curtis <spike@coder.com>
3.7 KiB
IDEs
The following desktop IDEs have been tested with Coder, though any IDE with SSH support should work:
- VS Code (with Remote - SSH extension)
- JetBrains (with
Gateway
installed)
- IntelliJ IDEA
- CLion
- GoLand
- PyCharm
- Rider
- RubyMine
- WebStorm
- Web IDEs (code-server, JupyterLab, Jetbrains Projector)
- Note: These are configured in the template
SSH configuration
Before proceeding, run
coder login <accessURL>
if you haven't already to authenticate the CLI with the web UI and your workspaces.
To access Coder via SSH, run the following in the terminal:
coder config-ssh
Run
coder config-ssh --dry-run
if you'd like to see the changes that will be made before proceeding.
Confirm that you want to continue by typing yes and pressing enter. If successful, you'll see the following message:
You should now be able to ssh into your workspace.
For example, try running:
$ ssh coder.<workspaceName>
Your workspace is now accessible via ssh coder.<workspace_name>
(e.g.,
ssh coder.myEnv
if your workspace is named myEnv
).
VS Code Remote
Once you've configured SSH, you can work on projects from your local copy of VS Code, connected to your Coder workspace for compute, etc.
-
Open VS Code locally.
-
Install the Remote - SSH extension.
-
In VS Code's left-hand nav bar, click Remote Explorer and right-click on a workspace to connect.
JetBrains Gateway
Gateway operates in a client-server model, using an SSH connection to the remote host to install and start the server.
Setting up Gateway also involves picking a project directory, so if you have not already done so, you may wish to open a terminal on your Coder workspace and check out a copy of the project you intend to work on.
After installing Gateway on your local system, you may connect to a Coder workspace as follows
- Open Gateway, make sure "SSH" is selected under "Remote Development"
- Click "New Connection"
- In the resulting dialog, click the gear icon to the right of "Connection:"
- Hit the "+" button to add a new SSH connection
- For the Host, enter
coder.<workspace name>
- For the Port, enter
22
(this is ignored by Coder) - For the Username, enter
coder
- For the Authentication Type, select "OpenSSH config and authentication agent"
- Make sure the checkbox for "Parse config file ~/.ssh/config" is checked.
- Click "Test Connection" to ensure you setting are ok.
- Click "OK"
- For the Host, enter
- Select the connection you just added.
- Click "Check Connection and Continue"
- Select the JetBrains IDE for your project and the project directory
- Use an SSH terminal to your workspace to create a directory or check out code if you haven't already.
- Click "Download and Start IDE" to connect.
Version | Status | Notes |
---|---|---|
2021.3.2 | Working | |
2022.1.1 | Working | Windows clients are unable to connect to Linux workspace |
2022.2 RC | Not working | GitHub Issue |
Web IDEs (Jupyter, code-server, Jetbrains Projector)
Web IDEs (code-server, JetBrains Projector, VNC, etc.) are defined in the template. See configuring IDEs.