Skip to content

Commit 8b776d7

Browse files
committed
update links
1 parent ee005b4 commit 8b776d7

File tree

11 files changed

+24
-17
lines changed

11 files changed

+24
-17
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ Read [cursor rules](.cursorrules).
101101

102102
## Frontend
103103

104-
For building Frontend refer to [this document](docs/contributing/frontend.md)
104+
For building Frontend refer to [this document](docs/about/contributing/frontend.md)

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<!-- markdownlint-disable MD041 -->
2-
[https://coder.com/docs/contributing/CODE_OF_CONDUCT](https://coder.com/docs/contributing/CODE_OF_CONDUCT)
2+
[https://coder.com/docs/about/contributing/CODE_OF_CONDUCT](https://coder.com/docs/about/contributing/CODE_OF_CONDUCT)

coderd/database/migrations/migrate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ func TestMigrateUpWithFixtures(t *testing.T) {
283283
if len(emptyTables) > 0 {
284284
t.Log("The following tables have zero rows, consider adding fixtures for them or create a full database dump:")
285285
t.Errorf("tables have zero rows: %v", emptyTables)
286-
t.Log("See https://github.com/coder/coder/blob/main/docs/CONTRIBUTING.md#database-fixtures-for-testing-migrations for more information")
286+
t.Log("See https://github.com/coder/coder/blob/main/docs/about/contributing/backend.md#database-fixtures-for-testing-migrations for more information")
287287
}
288288
})
289289

docs/about/contributing/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ channel.
143143

144144
## Styling
145145

146-
Visit our [documentation style guide](./contributing/documentation.md).
146+
- [Documentation style guide](./documentation.md)
147147

148-
Frontend styling guide can be found [here](./contributing/frontend.md#styling).
148+
- [Frontend styling guide](./frontend.md#styling)
149149

150150
## Reviews
151151

docs/about/contributing/SECURITY.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Security Policy
22

3-
If you find a vulnerability, **DO NOT FILE AN ISSUE**. Instead, send an email to
3+
Coder welcomes feedback from security researchers and the general public to help improve our security.
4+
If you believe you have discovered a vulnerability, privacy issue, exposed data, or other security issues
5+
in any of our assets, we want to hear from you.
6+
This policy outlines steps for reporting vulnerabilities to us, what we expect, what you can expect from us.
7+
8+
If you find a vulnerability, **DO NOT FILE AN ISSUE**.
9+
Instead, send an email to
410
<security@coder.com>.
11+
12+
Refer to the [Security policy](https://coder.com/security/policy) for more information.

docs/about/contributing/frontend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ new conventions, but all new components should follow these guidelines.
250250

251251
## Styling
252252

253-
We use [Emotion](https://emotion.sh/) to handle css styles.
253+
We use [Emotion](https://emotion.sh/) to handle CSS styles.
254254

255255
## Forms
256256

docs/admin/security/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ For other security tips, visit our guide to
99

1010
> [!CAUTION]
1111
> If you discover a vulnerability in Coder, please do not hesitate to report it
12-
> to us by following the instructions
13-
> [here](https://github.com/coder/coder/blob/main/SECURITY.md).
12+
> to us by following the [security policy](https://github.com/coder/coder/blob/main/SECURITY.md).
1413
1514
From time to time, Coder employees or other community members may discover
1615
vulnerabilities in the product.

docs/admin/templates/extending-templates/modules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ For a full list of available modules please check
5454

5555
## Offline installations
5656

57-
In offline and restricted deploymnets, there are 2 ways to fetch modules.
57+
In offline and restricted deployments, there are two ways to fetch modules.
5858

5959
1. Artifactory
6060
2. Private git repository
6161

6262
### Artifactory
6363

64-
Air gapped users can clone the [coder/modules](https://github.com/coder/modules)
64+
Air gapped users can clone the [coder/registry](https://github.com/coder/registry/)
6565
repo and publish a
6666
[local terraform module repository](https://jfrog.com/help/r/jfrog-artifactory-documentation/set-up-a-terraform-module/provider-registry)
6767
to resolve modules via [Artifactory](https://jfrog.com/artifactory/).
@@ -71,8 +71,8 @@ to resolve modules via [Artifactory](https://jfrog.com/artifactory/).
7171
3. Follow the below instructions to publish coder modules to Artifactory
7272

7373
```shell
74-
git clone https://github.com/coder/modules
75-
cd modules
74+
git clone https://github.com/coder/registry
75+
cd registry/coder/modules
7676
jf tfc
7777
jf tf p --namespace="coder" --provider="coder" --tag="1.0.0"
7878
```

docs/ai-coder/custom-agents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ any-custom-agent configure-mcp --name "coder" --command "coder exp mcp server"
4040

4141
This will start the MCP server and report activity back to the Coder control plane on behalf of the coder_app resource.
4242

43-
> See the [Goose module](https://github.com/coder/modules/blob/main/goose/main.tf) source code for a real world example.
43+
> See the [Goose module](https://github.com/coder/registry/blob/main/registry/coder/modules/goose/main.tf) source code for a real world example.
4444
4545
## Contributing
4646

4747
We welcome contributions for various agents via the [Coder registry](https://registry.coder.com/modules?tag=agent)!
4848

49-
See our [contributing guide](https://github.com/coder/modules/blob/main/CONTRIBUTING.md) for more information.
49+
See our [contributing guide](https://github.com/coder/registry/blob/main/CONTRIBUTING.md) for more information.

docs/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
{
6363
"title": "Security",
64-
"description": "Our guide for security",
64+
"description": "Security vulnerability disclosure policy",
6565
"path": "./about/contributing/SECURITY.md",
6666
"icon_path": "./images/icons/lock.svg"
6767
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy