-
Notifications
You must be signed in to change notification settings - Fork 898
chore: add IDEs page #2388
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
chore: add IDEs page #2388
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e72e289
chore: add IDEs page
4e51be6
chore: update index
4b42e37
chore: add code-server usage instructions
9267c55
chore: remove info re: resources
309f25d
chore: add instructions for using JetBrains Gateway
0d8093f
Merge branch 'main' into vs-code
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# IDEs | ||
|
||
The following desktop IDEs have been tested with Coder, though any IDE with SSH | ||
support should work: | ||
|
||
- VS Code (with [Remote - | ||
SSH](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh) | ||
extension) | ||
- JetBrains (with | ||
[Gateway](https://www.jetbrains.com/help/idea/remote-development-a.html#launch_gateway) | ||
installed) | ||
- IntelliJ IDEA | ||
- CLion | ||
- GoLand | ||
- PyCharm | ||
- Rider | ||
- RubyMine | ||
- WebStorm | ||
|
||
## SSH configuration | ||
|
||
To access Coder via SSH, run the following in the terminal: | ||
|
||
```console | ||
coder config-ssh | ||
``` | ||
|
||
> Run `coder config-ssh --diff` if you'd like to see the changes that will be | ||
> made before proceeding. | ||
|
||
Confirm that you would like to continue by typing **yes** and pressing enter. If | ||
successful, you'll see the following message: | ||
|
||
```console | ||
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 | ||
|
||
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. | ||
|
||
1. Open VS Code locally. | ||
|
||
1. Install the [Remote - SSH](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh) | ||
extension. | ||
|
||
1. In VS Code's left-hand nav bar, click **Remote Explorer** and right-click on | ||
a workspace to connect. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TIL about
console
! I've always usedshell
but I guess they're the same!