mirror of
https://github.com/coder/coder.git
synced 2026-09-22 21:22:17 +08:00
> [!NOTE] > This PR was authored by Coder Agents on behalf of @jeremyruppel. Runs the `scripts/modulegen` generator against the coder/registry to produce the initial module catalog for the template builder. Generates `module.json` and `.tf.tmpl` files for 19 modules across four categories: - **IDE**: code-server, jetbrains, vscode-desktop, vscode-web, cursor, windsurf, zed, kiro - **AI Agent**: claude-code, aider, goose, amazon-q - **Source Control**: git-clone, git-config, git-commit-signing - **Utility**: dotfiles, personalize, filebrowser, jupyterlab Also updates `catalog_test.go` to validate the new embedded modules load correctly.
89 lines
2.4 KiB
JSON
89 lines
2.4 KiB
JSON
{
|
|
"id": "jetbrains",
|
|
"display_name": "JetBrains Toolbox",
|
|
"description": "Add JetBrains IDE integrations to your Coder workspaces with configurable options.",
|
|
"icon": "/icon/jetbrains.svg",
|
|
"category": "IDE",
|
|
"tags": [
|
|
"ide",
|
|
"jetbrains",
|
|
"parameter"
|
|
],
|
|
"compatible_os": [
|
|
"linux"
|
|
],
|
|
"conflicts_with": [],
|
|
"pinned_version": "1.4.0",
|
|
"variables": [
|
|
{
|
|
"name": "agent_id",
|
|
"type": "string",
|
|
"description": "The resource ID of a Coder agent.",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": true
|
|
},
|
|
{
|
|
"name": "agent_name",
|
|
"type": "string",
|
|
"description": "The name of a Coder agent. Needed for workspaces with multiple agents.",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "channel",
|
|
"type": "string",
|
|
"description": "JetBrains IDE release channel. Valid values are release and eap.",
|
|
"default": "release",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "download_base_link",
|
|
"type": "string",
|
|
"description": "URL of the JetBrains download base link.",
|
|
"default": "https://download.jetbrains.com",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "folder",
|
|
"type": "string",
|
|
"description": "The directory to open in the IDE. e.g. /home/coder/project",
|
|
"required": true,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "major_version",
|
|
"type": "string",
|
|
"description": "The major version of the IDE. i.e. 2025.1",
|
|
"default": "latest",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "releases_base_link",
|
|
"type": "string",
|
|
"description": "URL of the JetBrains releases base link.",
|
|
"default": "https://data.services.jetbrains.com",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
},
|
|
{
|
|
"name": "tooltip",
|
|
"type": "string",
|
|
"description": "Markdown text that is displayed when hovering over workspace apps.",
|
|
"default": "You need to install [JetBrains Toolbox App](https://www.jetbrains.com/toolbox-app/) to use this button.",
|
|
"required": false,
|
|
"sensitive": false,
|
|
"computed": false
|
|
}
|
|
]
|
|
}
|