Skip to content

Commit b882d46

Browse files
authored
docs: fix relative links in about/contributing (#18818)
hotfix --------- Co-authored-by: EdwardAngert <17991901+EdwardAngert@users.noreply.github.com>
1 parent 5a8a19b commit b882d46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/about/contributing/backend.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Need help or have questions? Join the conversation on our [Discord server](https
1616

1717
To understand how the backend fits into the broader system, we recommend reviewing the following resources:
1818

19-
* [General Concepts](../admin/infrastructure/validated-architectures/index.md#general-concepts): Essential concepts and language used to describe how Coder is structured and operated.
19+
* [General Concepts](../../admin/infrastructure/validated-architectures/index.md#general-concepts): Essential concepts and language used to describe how Coder is structured and operated.
2020

21-
* [Architecture](../admin/infrastructure/architecture.md): A high-level overview of the infrastructure layout, key services, and how components interact.
21+
* [Architecture](../../admin/infrastructure/architecture.md): A high-level overview of the infrastructure layout, key services, and how components interact.
2222

2323
These sections provide the necessary context for navigating and contributing to the backend effectively.
2424

@@ -168,9 +168,9 @@ There are two types of fixtures that are used to test that migrations don't
168168
break existing Coder deployments:
169169

170170
* Partial fixtures
171-
[`migrations/testdata/fixtures`](../../coderd/database/migrations/testdata/fixtures)
171+
[`migrations/testdata/fixtures`](../../../coderd/database/migrations/testdata/fixtures)
172172
* Full database dumps
173-
[`migrations/testdata/full_dumps`](../../coderd/database/migrations/testdata/full_dumps)
173+
[`migrations/testdata/full_dumps`](../../../coderd/database/migrations/testdata/full_dumps)
174174

175175
Both types behave like database migrations (they also
176176
[`migrate`](https://github.com/golang-migrate/migrate)). Their behavior mirrors
@@ -193,7 +193,7 @@ To add a new partial fixture, run the following command:
193193
```
194194

195195
Then add some queries to insert data and commit the file to the repo. See
196-
[`000024_example.up.sql`](../../coderd/database/migrations/testdata/fixtures/000024_example.up.sql)
196+
[`000024_example.up.sql`](../../../coderd/database/migrations/testdata/fixtures/000024_example.up.sql)
197197
for an example.
198198

199199
To create a full dump, run a fully fledged Coder deployment and use it to

0 commit comments

Comments
 (0)