You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Changes made
- Fleshed out main top-level README file
- Added formal docs for code of conduct and security (that just lead to
the Coder Docs)
- Revamped contributing guide
- Added a few images to help support the new docs
## Notes
- Just because we're not supporting templates for the moment, I did
deliberately limit the number of mentions to it.
This repo uses two main runtimes to verify the correctness of a module/template before it is published:
6
6
7
7
-[Bun](https://bun.sh/) – Used to run tests for each module/template to validate overall functionality and correctness of Terraform output
8
-
-[Go](https://go.dev/) – Used to validate all README files in the directory
8
+
-[Go](https://go.dev/) – Used to validate all README files in the directory. The README content is used to populate [the Registry website](https://registry.coder.com).
9
9
10
10
### Installing Bun
11
11
@@ -49,35 +49,87 @@ Once Go has been installed, verify the installation via:
49
49
go version
50
50
```
51
51
52
-
### Adding a new module/template (coming soon)
52
+
##Namespaces
53
53
54
-
Once Bun (and possibly Go) have been installed, clone this repository. From there, you can run this script to make it easier to start contributing a new module or template:
54
+
All Coder resources are scoped to namespaces placed at the top level of the `/registry` directory. Any modules or templates must be placed inside a namespace to be accepted as a contribution. For example, all modules created by CoderEmployeeBob would be placed under `/registry/coderemployeebob/modules`, with a subdirectory for each individual module the user has published.
55
+
56
+
If a namespace is already taken, you will need to create a different, unique namespace, but will still be able to choose any display name. (The display name is shown in the Registry website. More info below.)
57
+
58
+
### Namespace (contributor profile) README files
59
+
60
+
More information about contributor profile README files can be found below.
61
+
62
+
### Images
63
+
64
+
Any images needed for either the main namespace directory or a module/template can be placed in a relative `/images` directory at the top of the namespace directory. (e.g., CoderEmployeeBob can have a `/registry/coderemployeebob/images` directory, that can be referenced by the main README file, as well as a README file in `/registry/coderemployeebob/modules/custom_module/README.md`.) This is to minimize the risk of file name conflicts between different users as they add images to help illustrate parts of their README files.
65
+
66
+
## Coder modules
67
+
68
+
### Adding a new module
69
+
70
+
> [!WARNING]
71
+
> These instructions cannot be followed just yet; the script referenced will be made available shortly. Contributors looking to add modules early will need to create all directories manually.
72
+
73
+
Once Bun (and possibly Go) have been installed, clone the Coder Registry repository. From there, you can run this script to make it easier to start contributing a new module or template:
55
74
56
75
```shell
57
-
./new.sh NAME_OF_NEW_MODULE
76
+
./new.sh USER_NAMESPACE/NAME_OF_NEW_MODULE
58
77
```
59
78
60
-
You can also create the correct module/template files manually.
79
+
You can also create a module file manually by creating the necessary files and directories.
80
+
81
+
### The composition of a Coder module
82
+
83
+
Each Coder Module must contain the following files:
84
+
85
+
- A `main.tf` file that defines the main Terraform-based functionality
86
+
- A `main.test.ts` file that is used to validate that the module works as expected
87
+
- A `README.md` file containing required information (listed below)
88
+
89
+
You are free to include any additional files in the module, as needed by the module. For example, the [Windows RDP module](https://github.com/coder/registry/tree/main/registry/coder/modules/windows-rdp) contains additional files for injecting specific functionality into a Coder Workspace.
90
+
91
+
> [!NOTE]
92
+
> Some legacy modules do not have test files defined just yet. This will be addressed soon.
93
+
94
+
### The `main.tf` file
95
+
96
+
This file defines all core Terraform functionality, to be mixed into your Coder workspaces. More information about [Coder's use of Terraform can be found here](https://coder.com/docs/admin/templates/extending-templates/modules), and [general information about the Terraform language can be found in the official documentation](https://developer.hashicorp.com/terraform/docs).
97
+
98
+
### The structure of a module README
99
+
100
+
Validation criteria for module README files is listed below.
61
101
62
-
## Testing a Module
102
+
###Testing a Module
63
103
64
104
> [!IMPORTANT]
65
-
> It is the responsibility of the module author to implement tests for every new module they wish to contribute. It falls to the author to test the module locally before submitting a PR.
105
+
> It is the responsibility of the module author to implement tests for every new module they wish to contribute. It is expected the author has tested the module locally before opening a PR. Feel free to reference existing test files to get an idea for how to set them up.
66
106
67
107
All general-purpose test helpers for validating Terraform can be found in the top-level `/testing` directory. The helpers run `terraform apply` on modules that use variables, testing the script output against containers.
68
108
109
+
When writing a test file, you can import the test utilities via the `~test` import alias:
110
+
111
+
```ts
112
+
// This works regardless of how deeply-nested your test file is in the file
113
+
// structure
114
+
import {
115
+
runTerraformApply,
116
+
runTerraformInit,
117
+
testRequiredVariables,
118
+
} from"~test";
119
+
```
120
+
69
121
> [!NOTE]
70
-
> The testing suite must be able to run docker containers with the `--network=host` flag. This typically requires running the tests on Linux as this flag does not apply to Docker Desktop for MacOS and Windows. MacOS users can work around this by using something like [colima](https://github.com/abiosoft/colima) or [Orbstack](https://orbstack.dev/) instead of Docker Desktop.
122
+
> The testing suite must be able to run docker containers with the `--network=host` flag. This typically requires running the tests on Linux as this flag does not apply to Docker Desktop for MacOS or Windows. MacOS users can work around this by using something like [colima](https://github.com/abiosoft/colima) or [Orbstack](https://orbstack.dev/) instead of Docker Desktop.
71
123
72
-
You can reference the existing `*.test.ts` files to get an idea for how to set up tests.
124
+
#### Running tests
73
125
74
-
You can run all tests by running this command:
126
+
You can run all tests by running this command from the root of the Registry directory:
75
127
76
128
```shell
77
129
bun test
78
130
```
79
131
80
-
Note that tests can take some time to run, so you probably don't want to be running this as part of your development loop.
132
+
Note that running _all_tests can take some time, so you likely don't want to be running this command as part of your core development loop.
81
133
82
134
To run specific tests, you can use the `-t` flag, which accepts a filepath regex:
83
135
@@ -94,9 +146,9 @@ module "example" {
94
146
}
95
147
```
96
148
97
-
## Adding/modifying README files
149
+
## Updating README files
98
150
99
-
This repo uses Go to do a quick validation of each README. If you are working with the README files at all, it is strongly recommended that you install Go, so that the files can be validated locally.
151
+
This repo uses Go to validate each README file. If you are working with the README files at all (i.e., creating them, modifying them), it is strongly recommended that you install Go (installation instructions mentioned above), so that the files can be validated locally.
100
152
101
153
### Validating all README files
102
154
@@ -106,25 +158,25 @@ To validate all README files throughout the entire repo, you can run the followi
106
158
go build ./cmd/readmevalidation && ./readmevalidation
107
159
```
108
160
109
-
The resulting binary is already part of the `.gitignore` file, but you can quickly remove it with:
161
+
The resulting binary is already part of the `.gitignore` file, but you can remove it with:
110
162
111
163
```shell
112
164
rm ./readmevalidation
113
165
```
114
166
115
167
### README validation criteria
116
168
117
-
The following criteria exists for one of two reasons: (1) content accessibility, or (2) having content be designed in a way that's easy for the Registry site build step to use:
169
+
The following criteria exists for two reasons:
170
+
171
+
1. Content accessibility
172
+
2. Having content be designed in a way that's easy for the Registry site build step to use
118
173
119
174
#### General README requirements
120
175
121
176
- There must be a frontmatter section.
122
-
- There must be exactly one h1 header, and it must be at the very top
177
+
- There must be exactly one h1 header, and it must be at the very top, directly below the frontmatter.
123
178
- The README body (if it exists) must start with an h1 header. No other content (including GitHub-Flavored Markdown alerts) is allowed to be placed above it.
124
179
- When increasing the level of a header, the header's level must be incremented by one each time.
125
-
- Additional image/video assets can be placed in one of two places:
126
-
- In the same user namespace directory where that user's main content lives
127
-
- In the top-level `.icons` directory
128
180
- Any `.hcl` code snippets must be labeled as `.tf` snippets instead
129
181
130
182
```txt
@@ -133,27 +185,60 @@ The following criteria exists for one of two reasons: (1) content accessibility,
133
185
\`\`\`
134
186
```
135
187
136
-
#### Contributor profiles
137
-
138
-
- The README body is allowed to be empty, but if it isn't, it must follow all the rules above.
139
-
- The frontmatter supports the following fields:
140
-
-`display_name` (required string) – The name to use when displaying your user profile in the Coder Registry site
141
-
-`bio` (optional string) – A short description of who you are
142
-
-`github` (required string) – Your GitHub handle
143
-
-`avatar_url` (optional string) – A relative/absolute URL pointing to your avatar
144
-
-`linkedin` (optional string) – A URL pointing to your LinkedIn page
145
-
-`support_email` (optional string) – An email for users to reach you at if they need help with a published module/template
146
-
-`employer_github` (optional string) – The name of another user namespace whom you'd like to have associated with your account. The namespace must also exist in the repo, or else the README validation will fail.
147
-
-`status` (optional string union) – If defined, must be one of "community", "partner", or "official". "Community" is treated as the default value if not specified, and should be used for the majority of external contributions. "Official" should be used for Coder and Coder satellite companies. "Partner" is for companies who have a formal business agreement with Coder.
148
-
149
-
#### Modules and templates
150
-
151
-
- The frontmatter supports the following fields:
152
-
-`description` (required string) A short description of what the module/template does.
153
-
-`icon` (required string) – A URL pointing to the icon to use for the module/template when viewing it on the Registry website.
154
-
-`display_name` (optional string) – A name to display instead of the name intuited from the module's/template's directory name
155
-
-`verified` (optional boolean) – A boolean indicated that the Coder team has officially tested and vouched for the functionality/reliability of a given module or template. This field should only be changed by Coder employees.
156
-
-`tags` (optional string array) – A list of tags to associate with the module/template. Users will be able to search for these tags from the Registry website.
188
+
#### Namespace (contributor profile) criteria
189
+
190
+
In addition to the general criteria, all README files must have the following:
191
+
192
+
- Frontmatter metadata with support for the following fields:
193
+
194
+
-`display_name` (required string) – The name to use when displaying your user profile in the Coder Registry site.
195
+
-`bio` (optional string) – A short description of who you are.
196
+
-`github` (optional string) – Your GitHub handle.
197
+
-`avatar_url` (optional string) – A relative/absolute URL pointing to your avatar for the Registry site. It is strongly recommended that you commit avatar images to this repo and reference them via a relative URL.
198
+
-`linkedin` (optional string) – A URL pointing to your LinkedIn page.
199
+
-`support_email` (optional string) – An email for users to reach you at if they need help with a published module/template.
200
+
-`status` (string union) – If defined, this must be one of `"community"`, `"partner"`, or `"official"`. `"community"` should be used for the majority of external contributions. `"partner"` is for companies who have a formal business partnership with Coder. `"official"` should be used only by Coder employees.
201
+
202
+
- The README body (the content that goes directly below the frontmatter) is allowed to be empty, but if it isn't, it must follow all the rules above.
203
+
204
+
You are free to customize the body of a contributor profile however you like, adding any number of images or information. Its content will never be rendered in the Registry website.
205
+
206
+
Additional information can be placed in the README file below the content listed above, using any number of headers.
207
+
208
+
Additional image/video assets can be placed in the same user namespace directory where that user's main content lives.
209
+
210
+
#### Module criteria
211
+
212
+
In addition to the general criteria, all README files must have the following:
213
+
214
+
- Frontmatter that describes metadata for the module:
215
+
-`display_name` (required string) – This is the name displayed on the Coder Registry website
216
+
-`description` (required string) – A short description of the module, which is displayed on the Registry website
217
+
-`icon` (required string) – A relative/absolute URL pointing to the icon to display for the module in the Coder Registry website.
218
+
-`verified` (optional boolean) – Indicates whether the module has been officially verified by Coder. Please do not set this without approval from a Coder employee.
219
+
-`tags` (required string array) – A list of metadata tags to describe the module. Used in the Registry site for search and navigation functionality.
220
+
-`maintainer_github` (deprecated string) – The name of the creator of the module. This field exists for backwards compatibility with previous versions of the Registry, but going forward, the value will be inferred from the namespace directory.
221
+
-`partner_github` (deprecated string) - The name of any additional creators for a module. This field exists for backwards compatibility with previous versions of the Registry, but should not ever be used going forward.
222
+
- The following content directly under the h1 header (without another header between them):
223
+
224
+
- A description of what the module does
225
+
- A Terraform snippet for letting other users import the functionality
Additional information can be placed in the README file below the content listed above, using any number of headers.
237
+
238
+
Additional image/video assets can be placed in one of two places:
239
+
240
+
1. In the same user namespace directory where that user's main content lives
241
+
2. If the image is an icon, it can be placed in the top-level `.icons` directory (this is done because a lot of modules will be based off the same products)
Coder Registry is a community-driven platform for extending your Coder workspaces. Publish reusable Terraform as Coder Modules for users all over the world.
4
8
5
9
> [!NOTE]
6
-
> This repo is in active development. We needed to make it public for technical reasons, but the user experience of actually navigating through it and contributing will be made much better shortly.
10
+
> The Coder Registry repo will be updated to support Coder Templates in the coming weeks. You can currently find all official templates in the official coder/coder repo, [under the `examples/templates` directory](https://github.com/coder/coder/tree/main/examples/templates).
11
+
12
+
## Overview
13
+
14
+
Coder is built on HashiCorp's open-source Terraform language to provide developers an easy, declarative way to define the infrastructure for their remote development environments. Coder-flavored versions of Terraform allow you to mix in reusable Terraform snippets to add integrations with other popular development tools, such as JetBrains, Cursor, or Visual Studio Code.
15
+
16
+
Simply add the correct import snippet, along with any data dependencies, and your workspace can start using the new functionality immediately.
17
+
18
+

19
+
20
+
More information [about Coder Modules can be found here](https://coder.com/docs/admin/templates/extending-templates/modules), while more information [about Coder Templates can be found here](https://coder.com/docs/admin/templates/creating-templates).
21
+
22
+
## Getting started
23
+
24
+
The easiest way to discover new modules and templates is by visiting [the official Coder Registry website](https://registry.coder.com/). The website is a full mirror of the Coder Registry repo, and it is where .tar versions of the various resources can be downloaded from, for use within your Coder deployment.
25
+
26
+
Note that while Coder has a baseline set of requirements for allowing an external PR to be published, Coder cannot vouch for the validity or functionality of a resource until that resource has been flagged with the `verified` status. [All modules under the Coder namespace](https://github.com/coder/registry/tree/main/registry/coder) are automatically verified.
27
+
28
+
### Getting started with modules
29
+
30
+
To get started with a module, navigate to that module's page in either the registry site, or the main repo:
Simply include that snippet inside your Coder template, defining any data dependencies referenced, and the next time you create a new workspace, the functionality will be ready for you to use.
47
+
48
+
## Contributing
49
+
50
+
We are always accepting new contributions. [Please see our contributing guide for more information.](./CONTRIBUTING.md)
0 commit comments