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.
42 lines
1.1 KiB
Markdown
42 lines
1.1 KiB
Markdown
---
|
|
display_name: JetBrains Gateway
|
|
description: Add a one-click button to launch JetBrains Gateway IDEs in the dashboard.
|
|
icon: ../.icons/gateway.svg
|
|
maintainer_github: coder
|
|
verified: true
|
|
tags: [ide, jetbrains, gateway, goland, webstorm, intellij, pycharm, phpstorm, clion, rubymine, datagrip, rider]
|
|
---
|
|
# JetBrains Gateway
|
|
|
|
This module adds a JetBrains Gateway IDEs to your Coder template.
|
|
|
|
## How to use this module
|
|
|
|
To use this module, add the following snippet to your template manifest:
|
|
|
|
```hcl
|
|
module "jetbrains_gateway" {
|
|
source = "git::https://github.com/coder/testing-modules.git//jetbrains-gateway"
|
|
agent_id = coder_agent.main.id
|
|
agent_name = "main"
|
|
project_directory = "/home/coder"
|
|
gateway_ide_product_code = ["GO","WS"] # A list of JetBrains product codes use ["ALL"] for all products
|
|
}
|
|
```
|
|
|
|
## Supported IDEs
|
|
|
|
The following JetBrains IDEs are supported:
|
|
|
|
- GoLand (`GO`)
|
|
- WebStorm (`WS`)
|
|
- IntelliJ IDEA Ultimate (`IU`)
|
|
- IntelliJ IDEA Community (`IC`)
|
|
- PyCharm Professional (`PY`)
|
|
- PyCharm Community (`PC`)
|
|
- PhpStorm (`PS`)
|
|
- CLion (`CL`)
|
|
- RubyMine (`RM`)
|
|
- DataGrip (`DB`)
|
|
- Rider (`RD`)
|