You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() Another try at #96. I cannot reproduce the error on deployment and dev.coder.com. It also removes Community editions, `Rider`, and `DataGrip` as they are not supported for Remote Development. |
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
main.test.ts | 2 years ago | |
main.tf | 2 years ago |
README.md
display_name | description | icon | maintainer_github | verified | tags | ||||
---|---|---|---|---|---|---|---|---|---|
JetBrains Gateway | Add a one-click button to launch JetBrains Gateway IDEs in the dashboard. | ../.icons/gateway.svg | coder | true |
|
JetBrains Gateway
This module adds a JetBrains Gateway Button to open any workspace with a single click.
module "jetbrains_gateway" {
source = "https://registry.coder.com/modules/jetbrains-gateway"
agent_id = coder_agent.example.id
folder = "/home/coder/example"
jetbrains_ides = ["GO", "WS", "IU", "PY", "PS", "CL", "RM"]
default = "PY"
}
Examples
Add GoLand and WebStorm with the default set to GoLand
module "jetbrains_gateway" {
source = "https://registry.coder.com/modules/jetbrains-gateway"
agent_id = coder_agent.example.id
folder = "/home/coder/example"
jetbrains_ides = ["GO", "WS"]
default = "GO"
}
Supported IDEs
This module and JetBrains Gateway support the following JetBrains IDEs:
- GoLand (
GO
) - WebStorm (
WS
) - IntelliJ IDEA Ultimate (
IU
) - PyCharm Professional (
PY
) - PhpStorm (
PS
) - CLion (
CL
) - RubyMine (
RM
)