Skip to content

Commit db6e6d0

Browse files
committed
Updated guides descriptions and edge function basic
1 parent 49163c6 commit db6e6d0

File tree

3 files changed

+27
-65
lines changed

3 files changed

+27
-65
lines changed

docs/guides/frameworks/supabase-edge-functions-basic.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ This guide shows you how to set up and deploy a simple Supabase edge function ex
2626
## Prerequisites
2727

2828
- Ensure you have the [Supabase CLI](https://supabase.com/docs/guides/cli/getting-started) installed
29+
- Since Supabase CLI version 1.123.4, you must have [Docker Desktop installed](https://supabase.com/docs/guides/functions/deploy#deploy-your-edge-functions) to deploy Edge Functions
2930
- Ensure TypeScript is installed
3031
- [Create a Trigger.dev account](https://cloud.trigger.dev)
3132
- [Create a new Trigger.dev project](/guides/dashboard/creating-a-project)

docs/mint.json

Lines changed: 21 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
22
"$schema": "https://mintlify.com/schema.json",
33
"name": "Trigger.dev",
4-
"openapi": [
5-
"/openapi.yml",
6-
"/v3-openapi.yaml"
7-
],
4+
"openapi": ["/openapi.yml", "/v3-openapi.yaml"],
85
"api": {
96
"playground": {
107
"mode": "simple"
@@ -114,41 +111,26 @@
114111
"navigation": [
115112
{
116113
"group": "Getting Started",
117-
"pages": [
118-
"introduction",
119-
"quick-start",
120-
"how-it-works",
121-
"upgrading-beta",
122-
"limits"
123-
]
114+
"pages": ["introduction", "quick-start", "how-it-works", "upgrading-beta", "limits"]
124115
},
125116
{
126117
"group": "Fundamentals",
127118
"pages": [
128119
{
129120
"group": "Tasks",
130-
"pages": [
131-
"tasks/overview",
132-
"tasks/scheduled"
133-
]
121+
"pages": ["tasks/overview", "tasks/scheduled"]
134122
},
135123
"triggering",
136124
"apikeys",
137125
{
138126
"group": "Configuration",
139-
"pages": [
140-
"config/config-file",
141-
"config/extensions/overview"
142-
]
127+
"pages": ["config/config-file", "config/extensions/overview"]
143128
}
144129
]
145130
},
146131
{
147132
"group": "Development",
148-
"pages": [
149-
"cli-dev",
150-
"run-tests"
151-
]
133+
"pages": ["cli-dev", "run-tests"]
152134
},
153135
{
154136
"group": "Deployment",
@@ -158,9 +140,7 @@
158140
"github-actions",
159141
{
160142
"group": "Deployment integrations",
161-
"pages": [
162-
"vercel-integration"
163-
]
143+
"pages": ["vercel-integration"]
164144
}
165145
]
166146
},
@@ -172,13 +152,7 @@
172152
"errors-retrying",
173153
{
174154
"group": "Wait",
175-
"pages": [
176-
"wait",
177-
"wait-for",
178-
"wait-until",
179-
"wait-for-event",
180-
"wait-for-request"
181-
]
155+
"pages": ["wait", "wait-for", "wait-until", "wait-for-event", "wait-for-request"]
182156
},
183157
"queue-concurrency",
184158
"versioning",
@@ -197,10 +171,7 @@
197171
"management/overview",
198172
{
199173
"group": "Tasks API",
200-
"pages": [
201-
"management/tasks/trigger",
202-
"management/tasks/batch-trigger"
203-
]
174+
"pages": ["management/tasks/trigger", "management/tasks/batch-trigger"]
204175
},
205176
{
206177
"group": "Runs API",
@@ -239,9 +210,7 @@
239210
},
240211
{
241212
"group": "Projects API",
242-
"pages": [
243-
"management/projects/runs"
244-
]
213+
"pages": ["management/projects/runs"]
245214
}
246215
]
247216
},
@@ -287,11 +256,7 @@
287256
},
288257
{
289258
"group": "Help",
290-
"pages": [
291-
"community",
292-
"help-slack",
293-
"help-email"
294-
]
259+
"pages": ["community", "help-slack", "help-email"]
295260
},
296261
{
297262
"group": "",
@@ -303,7 +268,14 @@
303268
"guides/frameworks/bun",
304269
"guides/frameworks/nextjs",
305270
"guides/frameworks/nodejs",
306-
"guides/frameworks/remix",
271+
"guides/frameworks/remix"
272+
]
273+
},
274+
{
275+
"group": "Guides",
276+
"pages": [
277+
"guides/frameworks/prisma",
278+
"guides/frameworks/sequin",
307279
{
308280
"group": "Supabase",
309281
"icon": "bolt",
@@ -316,13 +288,6 @@
316288
}
317289
]
318290
},
319-
{
320-
"group": "Guides",
321-
"pages": [
322-
"guides/frameworks/prisma",
323-
"guides/frameworks/sequin"
324-
]
325-
},
326291
{
327292
"group": "Example tasks",
328293
"pages": [
@@ -343,20 +308,16 @@
343308
},
344309
{
345310
"group": "Dashboard",
346-
"pages": [
347-
"guides/dashboard/creating-a-project"
348-
]
311+
"pages": ["guides/dashboard/creating-a-project"]
349312
},
350313
{
351314
"group": "Migrations",
352-
"pages": [
353-
"guides/use-cases/upgrading-from-v2"
354-
]
315+
"pages": ["guides/use-cases/upgrading-from-v2"]
355316
}
356317
],
357318
"footerSocials": {
358319
"twitter": "https://twitter.com/triggerdotdev",
359320
"github": "https://github.com/triggerdotdev",
360321
"linkedin": "https://www.linkedin.com/company/triggerdotdev"
361322
}
362-
}
323+
}

docs/snippets/supabase-docs-cards.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
<CardGroup cols={2}>
66
<Card
7-
title="Edge function hello world"
8-
icon="bolt"
7+
title="Edge function hello world guide"
8+
icon="book"
99
href="/guides/frameworks/supabase-edge-functions-basic"
1010
>
11-
Learn how to trigger a task from a Supabase edge function when a URL is visited.
11+
Learn how to **trigger** a task from a Supabase edge function when a URL is visited.
1212
</Card>
1313
<Card
14-
title="Edge function database webhooks"
15-
icon="bolt"
14+
title="Database webhooks guide"
15+
icon="book"
1616
href="/guides/frameworks/supabase-edge-functions-database-webhooks"
1717
>
1818
Learn how to trigger a task from a Supabase edge function when an event occurs in your database.

0 commit comments

Comments
 (0)