Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit89aaa72

Browse files
docs(modules): move header links to body
1 parent8943003 commit89aaa72

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

‎docs/about/contributing/modules.md‎

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Understanding how modules fit into the Coder ecosystem:
4141

4242
The Coder Registry organizes modules into different categories based on their functionality. Here are the main types with examples of actual available modules:
4343

44-
###[IDE & Development Environments](https://registry.coder.com/modules?search=tag%3Aide)
44+
###IDE & Development Environments
4545

46-
Integrate development environments and code editors into workspaces.
46+
[Integrate development environments and code editors into workspaces](https://registry.coder.com/modules?search=tag%3Aide).
4747

4848
####Browser-based IDEs
4949

@@ -63,9 +63,9 @@ One-click launch buttons to connect local IDE applications to your workspace. Th
6363
-**[VS Code Desktop](https://registry.coder.com/modules/coder/vscode-desktop)**: Add a one-click button to launch VS Code Desktop
6464
-**[Windsurf Editor](https://registry.coder.com/modules/coder/windsurf)**: Add a one-click button to launch Windsurf Editor
6565

66-
###[Helper Modules](https://registry.coder.com/modules?search=tag%3Ahelper)
66+
###Helper Modules
6767

68-
Simplify template creation and workspace configuration.
68+
[Simplify template creation and workspace configuration](https://registry.coder.com/modules?search=tag%3Ahelper).
6969

7070
####Parameter Modules
7171

@@ -90,27 +90,27 @@ Automate workspace setup and configuration tasks. These modules use `coder_scrip
9090
-**[Personalize](https://registry.coder.com/modules/coder/personalize)**: Allow developers to customize their workspace on start
9191
-**[Slack Me](https://registry.coder.com/modules/coder/slackme)**: Send a Slack message when a command finishes inside a workspace
9292

93-
###[Desktop Modules](https://registry.coder.com/modules?search=tag%3Adesktop)
93+
###Desktop Modules
9494

95-
Provide graphical desktop environments for visual development workflows.
95+
[Provide graphical desktop environments for visual development workflows](https://registry.coder.com/modules?search=tag%3Adesktop).
9696

9797
-**[Amazon DCV Windows](https://registry.coder.com/modules/coder/amazon-dcv-windows)**: Amazon DCV Server and Web Client for Windows
9898
-**[KasmVNC](https://registry.coder.com/modules/coder/kasmvnc)**: A modern open source VNC server
9999
-**[Windows RDP](https://registry.coder.com/modules/coder/windows-rdp)**: RDP Server and Web Client, powered by Devolutions Gateway
100100
-**[Windows RDP Desktop](https://registry.coder.com/modules/coder/local-windows-rdp)**: Enable RDP on Windows and add a one-click Coder Desktop button for seamless access
101101

102-
###[AI Modules](https://registry.coder.com/modules?search=tag%3Aai)
102+
###AI Modules
103103

104-
Integrate AI-powered development tools and assistants.
104+
[Integrate AI-powered development tools and assistants](https://registry.coder.com/modules?search=tag%3Aai).
105105

106106
-**[Aider](https://registry.coder.com/modules/coder/aider)**: Run Aider AI pair programming in your workspace
107107
-**[Amazon Q](https://registry.coder.com/modules/coder/amazon-q)**: Run Amazon Q in your workspace to access Amazon's AI coding assistant
108108
-**[Claude Code](https://registry.coder.com/modules/coder/claude-code)**: Run Claude Code in your workspace
109109
-**[Goose](https://registry.coder.com/modules/coder/goose)**: Run Goose in your workspace
110110

111-
###[Integration Modules](https://registry.coder.com/modules?search=tag%3Aintegration)
111+
###Integration Modules
112112

113-
Connect with external services and platforms.
113+
[Connect with external services and platforms](https://registry.coder.com/modules?search=tag%3Aintegration).
114114

115115
-**[Hashicorp Vault Integration (GitHub)](https://registry.coder.com/modules/coder/vault-github)**: Authenticates with Vault using GitHub
116116
-**[Hashicorp Vault Integration (JWT)](https://registry.coder.com/modules/coder/vault-jwt)**: Authenticates with Vault using a JWT from Coder's OIDC provider
@@ -153,13 +153,13 @@ module-name/
153153

154154
##Understanding Coder Resources
155155

156-
The Coder Terraform provider offers several resource types for different aspects of workspace functionality. Understanding when and how to use each resource is crucial for effective module development.
156+
The[Coder Terraform provider](https://registry.terraform.io/providers/coder/coder/latest/docs) offers several resource types for different aspects of workspace functionality. Understanding when and how to use each resource is crucial for effective module development.
157157

158-
###[Coder Resources](https://registry.terraform.io/providers/coder/coder/latest/docs)
158+
###Coder Resources
159159

160-
####[coder_script - Command Execution](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/script)
160+
####coder_script - Command Execution
161161

162-
Execute commands during workspace lifecycle events. This is the primary mechanism for software installation, service configuration, and environment setup.
162+
[Execute commands during workspace lifecycle events](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/script). This is the primary mechanism for software installation, service configuration, and environment setup.
163163

164164
**When to use**:
165165

@@ -192,9 +192,9 @@ resource "coder_script" "install" {
192192
}
193193
```
194194

195-
####[coder_app - User Interface](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/app)
195+
####coder_app - User Interface
196196

197-
Create accessible applications in the Coder workspace interface, providing users with one-click access to tools and services.
197+
[Create accessible applications in the Coder workspace interface](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/app), providing users with one-click access to tools and services.
198198

199199
**When to use**:
200200

@@ -230,9 +230,9 @@ resource "coder_app" "service" {
230230

231231
>**⚠️ Important**: Health check URLs are service-specific. Common paths include`/health`,`/healthz`,`/ping`,`/status`, or`/api/health`. Check your service's documentation or use the main service URL if no dedicated health endpoint exists.
232232
233-
####[coder_env - Environment Variables](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/env)
233+
####coder_env - Environment Variables
234234

235-
Set environment variables in workspace sessions for tool configuration and authentication.
235+
[Set environment variables in workspace sessions](https://registry.terraform.io/providers/coder/coder/latest/docs/resources/env) for tool configuration and authentication.
236236

237237
**When to use**:
238238

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp