- Notifications
You must be signed in to change notification settings - Fork907
docs: reorganize JetBrains docs#17995
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
71e77b0
b325093
449d836
2e14b6a
b5f5bdd
1c2acb4
1381b3d
5981e57
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -109,9 +109,10 @@ We are always working on new integrations. Please feel free to open an issue and | ||
###Official | ||
-[**VS Code Extension**](https://marketplace.visualstudio.com/items?itemName=coder.coder-remote): Open any Coder workspace in VS Code with a single click | ||
-[**JetBrains Toolbox Plugin**](https://plugins.jetbrains.com/plugin/26968-coder): Open any Coder workspace from JetBrains Toolbox with a single click | ||
-[**JetBrains Gateway Plugin**](https://plugins.jetbrains.com/plugin/19620-coder): Open any Coder workspace in JetBrains Gateway with a single click | ||
-[**Dev Container Builder**](https://github.com/coder/envbuilder): Build development environments using`devcontainer.json` on Docker, Kubernetes, and OpenShift | ||
-[**Coder Registry**](https://registry.coder.com):Build and extend development environments with common use-cases | ||
EdwardAngert marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
-[**Kubernetes Log Stream**](https://github.com/coder/coder-logstream-kube): Stream Kubernetes Pod events to the Coder startup logs | ||
-[**Self-Hosted VS Code Extension Marketplace**](https://github.com/coder/code-marketplace): A private extension marketplace that works in restricted or airgapped networks integrating with[code-server](https://github.com/coder/code-server). | ||
-[**Setup Coder**](https://github.com/marketplace/actions/setup-coder): An action to setup coder CLI in GitHub workflows. | ||
This file was deleted.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -136,18 +136,24 @@ | ||
}, | ||
{ | ||
"title": "JetBrains IDEs", | ||
"description": "Use JetBrains IDEs withCoder", | ||
"path": "./user-guides/workspace-access/jetbrains/index.md", | ||
"children": [ | ||
{ | ||
"title": "JetBrains Fleet", | ||
"description": "Connect JetBrains Fleet to a Coder workspace", | ||
"path": "./user-guides/workspace-access/jetbrains/fleet.md" | ||
}, | ||
{ | ||
"title": "JetBrains Gateway", | ||
"description": "Use JetBrains Gateway to connect to Coder workspaces", | ||
"path": "./user-guides/workspace-access/jetbrains/gateway.md" | ||
}, | ||
{ | ||
"title": "JetBrains Toolbox", | ||
"description": "Access Coder workspaces from JetBrains Toolbox", | ||
"path": "./user-guides/workspace-access/jetbrains/toolbox.md", | ||
"state": ["beta"] | ||
} | ||
] | ||
}, | ||
@@ -497,9 +503,14 @@ | ||
"path": "./admin/templates/extending-templates/web-ides.md" | ||
}, | ||
{ | ||
"title": "Pre-install JetBrains IDEs", | ||
"description": "Pre-install JetBrains IDEs in a template for faster IDE startup", | ||
"path": "./admin/templates/extending-templates/jetbrains-preinstall.md" | ||
}, | ||
{ | ||
"title": "JetBrains IDEs in Air-Gapped Deployments", | ||
"description": "Configure JetBrains IDEs for air-gapped deployments", | ||
"path": "./admin/templates/extending-templates/jetbrains-airgapped.md" | ||
}, | ||
{ | ||
"title": "Docker in Workspaces", | ||
@@ -920,6 +931,16 @@ | ||
"description": "Learn how to use NGINX as a reverse proxy", | ||
"path": "./tutorials/reverse-proxy-nginx.md" | ||
}, | ||
{ | ||
matifali marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
"title": "Pre-install JetBrains IDEs in Workspaces", | ||
"description": "Pre-install JetBrains IDEs in workspaces", | ||
"path": "./admin/templates/extending-templates/jetbrains-preinstall.md" | ||
}, | ||
{ | ||
"title": "Use JetBrains IDEs in Air-Gapped Deployments", | ||
"description": "Configure JetBrains IDEs for air-gapped deployments", | ||
"path": "./admin/templates/extending-templates/jetbrains-airgapped.md" | ||
}, | ||
{ | ||
"title": "FAQs", | ||
"description": "Miscellaneous FAQs from our community", | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# JetBrains Fleet | ||
JetBrains Fleet is a code editor and lightweight IDE designed to support various | ||
programming languages and development environments. | ||
[See JetBrains's website](https://www.jetbrains.com/fleet/) to learn more about Fleet. | ||
To connect Fleet to a Coder workspace: | ||
1. [Install Fleet](https://www.jetbrains.com/fleet/download) | ||
1. Install Coder CLI | ||
```shell | ||
curl -L https://coder.com/install.sh | sh | ||
``` | ||
1. Login and configure Coder SSH. | ||
```shell | ||
coder login coder.example.com | ||
coder config-ssh | ||
``` | ||
1. Connect via SSH with the Host set to `coder.workspace-name` | ||
 |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.