Files
coder/coderd/templatebuilder/modules/filebrowser/module.json
T
Jeremy Ruppel 1cdb7ed9f7 feat(coderd/templatebuilder): author initial module catalog for 19 modules (#26194)
> [!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.
2026-06-15 09:26:39 -04:00

62 lines
1.4 KiB
JSON

{
"id": "filebrowser",
"display_name": "File Browser",
"description": "A file browser for your workspace",
"icon": "/icon/filebrowser.svg",
"category": "Utility",
"tags": [
"filebrowser",
"web"
],
"compatible_os": [
"linux"
],
"conflicts_with": [],
"pinned_version": "1.1.5",
"variables": [
{
"name": "agent_id",
"type": "string",
"description": "The ID of a Coder agent.",
"required": false,
"sensitive": false,
"computed": true
},
{
"name": "agent_name",
"type": "string",
"description": "The name of the coder_agent resource. Required when `subdomain` is `false` so the path-based base URL matches the URL Coder serves.",
"required": false,
"sensitive": false,
"computed": false
},
{
"name": "database_path",
"type": "string",
"description": "The path to the filebrowser database.",
"default": "filebrowser.db",
"required": false,
"sensitive": false,
"computed": false
},
{
"name": "folder",
"type": "string",
"description": "--root value for filebrowser.",
"default": "~",
"required": false,
"sensitive": false,
"computed": false
},
{
"name": "port",
"type": "number",
"description": "The port to run filebrowser on.",
"default": 13339,
"required": false,
"sensitive": false,
"computed": false
}
]
}