Skip to content

Commit aded298

Browse files
committed
fix broken links
1 parent 0910b71 commit aded298

14 files changed

+23
-19
lines changed

docs/config/config-file.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default defineConfig({
7070
});
7171
```
7272

73-
Read more about task lifecycle functions in the [tasks overview](/tasks-overview).
73+
Read more about task lifecycle functions in the [tasks overview](/tasks/overview).
7474

7575
## Instrumentations
7676

@@ -116,7 +116,7 @@ export default defineConfig({
116116
});
117117
```
118118

119-
See our [Bun guide](/guides/bun) for more information.
119+
See our [Bun guide](/guides/frameworks/bun) for more information.
120120

121121
## Default machine
122122

docs/errors-retrying.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ When an uncaught error is thrown inside your task, that task attempt will fail.
99

1010
You can configure retrying in two ways:
1111

12-
1. In your [trigger.config file](/trigger-config) you can set the default retrying behavior for all tasks.
12+
1. In your [trigger.config file](/config/config-file) you can set the default retrying behavior for all tasks.
1313
2. On each task you can set the retrying behavior.
1414

1515
<Note>
1616
By default when you create your project using the CLI init command we disabled retrying in the DEV
17-
environment. You can enable it in your [trigger.config file](/trigger-config).
17+
environment. You can enable it in your [trigger.config file](/config/config-file).
1818
</Note>
1919

2020
## A simple example with OpenAI

docs/examples/ffmpeg-video-processing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default defineConfig({
2222
```
2323

2424
<Note>
25-
[Build extensions](../guides/build-extensions) allow you to hook into the build system and
25+
[Build extensions](/config/config-file#extensions) allow you to hook into the build system and
2626
customize the build process or the resulting bundle and container image (in the case of
2727
deploying). You can use pre-built extensions or create your own.
2828
</Note>

docs/guides/dashboard/creating-a-project.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ description: "This guide will show you how to create a new Trigger.dev project."
3030
<Card title="Quick start" icon="person-running-fast" href="/quick-start">
3131
Setup Trigger.dev in 3 minutes
3232
</Card>
33-
<Card title="Writing tasks" icon="wand-magic-sparkles" href="/tasks-overview">
33+
<Card title="Writing tasks" icon="wand-magic-sparkles" href="/tasks/overview">
3434
Learn what tasks are and how to write them
3535
</Card>
3636
</CardGroup>

docs/how-it-works.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ When you run `npx trigger.dev@latest dev`, we run your task code locally on your
424424

425425
<Note>
426426
Trigger.dev currently does not support "offline" dev mode, where you can run tasks without an
427-
internet connection. [Please let us know](feedback.trigger.dev) if this is a feature you
427+
internet connection. [Please let us know](https://feedback.trigger.dev/) if this is a feature you
428428
want/need.
429429
</Note>
430430

docs/introduction.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Trigger.dev v3 makes it easy to write reliable long-running tasks without timeou
99

1010
- We run your tasks with no timeouts. You don't have to manage any infrastructure (unless you [self-host](/open-source-self-hosting)). Workers are automatically scaled and managed for you.
1111
- We provide a multi-tenant queue that is used when triggering tasks.
12-
- We provide an SDK and CLI for writing tasks in your existing codebase, inside [/trigger folders](/trigger-folder).
13-
- We provide different types of tasks: [regular](/tasks-regular) and [scheduled](/tasks-scheduled).
12+
- We provide an SDK and CLI for writing tasks in your existing codebase, inside [/trigger folders](/config/config-file).
13+
- We provide different types of tasks: [regular](/tasks-regular) and [scheduled](/tasks/scheduled).
1414
- We provide a dashboard for monitoring, debugging, and managing your tasks.
1515

1616
We're [open source](https://github.com/triggerdotdev/trigger.dev) and you can choose to use the [Trigger.dev Cloud](https://cloud.trigger.dev) or [Self-host Trigger.dev](/open-source-self-hosting) on your own infrastructure.
@@ -21,7 +21,7 @@ We're [open source](https://github.com/triggerdotdev/trigger.dev) and you can ch
2121
<Card title="Quick start guide" icon="person-running-fast" href="/quick-start">
2222
Get started in 3 minutes.
2323
</Card>
24-
<Card title="Writing tasks" icon="wand-magic-sparkles" href="/tasks-overview">
24+
<Card title="Writing tasks" icon="wand-magic-sparkles" href="/tasks/overview">
2525
Tasks are the core of Trigger.dev. Learn what they are and how to write them.
2626
</Card>
2727
</CardGroup>

docs/migration-defer.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export async function runLongRunningTask() {
242242

243243
#### Example 2: A cron task
244244

245-
We call these [scheduled tasks](/tasks-scheduled) in Trigger.dev.
245+
We call these [scheduled tasks](/tasks/scheduled) in Trigger.dev.
246246

247247
In Defer you might have a function like this:
248248

@@ -272,6 +272,6 @@ export const sendMondayNewletter = schedules.task({
272272

273273
Then you need to attach a schedule to the task, either using the dashboard or in your code. You can attach unlimited schedules to a task.
274274

275-
<Card title="Attaching schedules" icon="clock" href="/tasks-scheduled">
275+
<Card title="Attaching schedules" icon="clock" href="/tasks/scheduled">
276276
How to attach a schedule to a task
277277
</Card>

docs/mint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@
8383
{
8484
"source": "/trigger-folder",
8585
"destination": "/config/config-file"
86+
},
87+
{
88+
"source": "/trigger-config",
89+
"destination": "/config/config-file"
8690
}
8791
],
8892
"anchors": [

docs/quick-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Once you've created an account, follow the steps in the app to:
4747
<Card title="How to trigger your tasks" icon="bolt" href="/triggering">
4848
Learn how to trigger tasks from your code.
4949
</Card>
50-
<Card title="Writing tasks" icon="wand-magic-sparkles" href="/tasks-overview">
50+
<Card title="Writing tasks" icon="wand-magic-sparkles" href="/tasks/overview">
5151
Tasks are the core of Trigger.dev. Learn what they are and how to write them.
5252
</Card>
5353
</CardGroup>

docs/snippets/useful-next-steps.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Useful next steps
22

33
<CardGroup cols={2}>
4-
<Card title="Tasks overview" icon="diagram-subtask" href="/tasks-overview">
4+
<Card title="Tasks overview" icon="diagram-subtask" href="/tasks/overview">
55
Learn what tasks are and their options
66
</Card>
77
<Card title="Writing tasks" icon="pen-nib" href="/writing-tasks-introduction">

docs/tasks-regular.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import OpenaiRetry from "/snippets/code/openai-retry.mdx"
77

88
They are defined using the `task()` function and can be [triggered](/triggering) from your backend or inside another task.
99

10-
Like all tasks they don't have timeouts, they should be placed inside a [/trigger folder](/trigger-folder), and you [can configure them](/tasks-overview#defining-a-task).
10+
Like all tasks they don't have timeouts, they should be placed inside a [/trigger folder](/config/config-file), and you [can configure them](/tasks/overview#defining-a-task).
1111

1212
## Example tasks
1313

docs/tasks/scheduled.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You can see from the comments that the payload has several useful properties:
6060
to do that.
6161
</Note>
6262

63-
Like all tasks they don't have timeouts, they should be placed inside a [/trigger folder](/trigger-folder), and you [can configure them](/tasks-overview#defining-a-task).
63+
Like all tasks they don't have timeouts, they should be placed inside a [/trigger folder](/config/config-file), and you [can configure them](/tasks/overview#defining-a-task).
6464

6565
## How to attach a schedule
6666

docs/triggering.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Trigger tasks **from inside a run**:
2020
| `yourTask.triggerAndWait()` | Inside task | Triggers a task and then waits until it's complete. You get the result data to continue with. [Read more](#task-triggerandwait) |
2121
| `yourTask.batchTriggerAndWait()` | Inside task | Triggers a task multiple times in parallel and then waits until they're all complete. You get the resulting data to continue with. [Read more](#task-batchtriggerandwait) |
2222

23-
Additionally, [scheduled tasks](/tasks-scheduled) get **automatically** triggered on their schedule and webhooks when receiving a webhook.
23+
Additionally, [scheduled tasks](/tasks/scheduled) get **automatically** triggered on their schedule and webhooks when receiving a webhook.
2424

2525
## Scheduled tasks
2626

27-
You should attach one or more schedules to your `schedules.task()` to trigger it on a recurring schedule. [Read the scheduled tasks docs](/tasks-scheduled).
27+
You should attach one or more schedules to your `schedules.task()` to trigger it on a recurring schedule. [Read the scheduled tasks docs](/tasks/scheduled).
2828

2929
## Authentication
3030

docs/writing-tasks-introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebarTitle: "Introduction"
44
description: "Tasks are the core of Trigger.dev. They are long-running processes that are triggered by events."
55
---
66

7-
Before digging deeper into the details of writing tasks, you should read the [fundamentals of tasks](/tasks-overview) to understand what tasks are and how they work.
7+
Before digging deeper into the details of writing tasks, you should read the [fundamentals of tasks](/tasks/overview) to understand what tasks are and how they work.
88

99
## Writing tasks
1010

0 commit comments

Comments
 (0)