Update README.md

pull/42/head
Muhammad Atif Ali 2 years ago committed by GitHub
parent 774eb16345
commit 876fd7ac30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,30 +4,42 @@ description: Add a one-click button to launch JetBrains Gateway IDEs in the dash
icon: ../.icons/gateway.svg
maintainer_github: coder
verified: true
tags: [ide, jetbrains, gateway, goland, webstorm, intellij, pycharm, phpstorm, clion, rubymine, datagrip, rider]
tags: [ide, jetbrains, helper]
---
# JetBrains Gateway
This module adds a JetBrains Gateway IDEs to your Coder template.
This module adds a JetBrains Gateway Button to open any workspace with a single click.
## How to use this module
## Examples
To use this module, add the following snippet to your template manifest:
### Add GoLand and WebStorm with the default set to GoLand
```hcl
module "jetbrains_gateway" {
source = "https://registry.coder.com/modules/jetbrains-gateway"
agent_id = coder_agent.main.id
agent_name = "main"
project_directory = "/home/coder/project"
agent_id = coder_agent.example.id
agent_name = "example"
project_directory = "/home/coder/example"
jetbrains_ides = ["GO", "WS"]
default = "GO"
}
```
### Add CLion and Idea with no D=deafult
```hcl
module "jetbrains_gateway" {
source = "https://registry.coder.com/modules/jetbrains-gateway"
agent_id = coder_agent.example.id
agent_name = "example"
project_directory = "/home/coder/example"
jetbrains_ides = ["IU", "CL"]
}
```
## Supported IDEs
The following JetBrains IDEs are supported:
This module and JetBrains Gateway support the following JetBrains IDEs:
- GoLand (`GO`)
- WebStorm (`WS`)

Loading…
Cancel
Save