Skip to content

Commit 1565bb7

Browse files
committed
Added repo links
1 parent 3ca0c15 commit 1565bb7

File tree

3 files changed

+34
-10
lines changed

3 files changed

+34
-10
lines changed

docs/guides/examples/fal-ai-realtime.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ sidebarTitle: "Fal.ai with Realtime"
44
description: "This example task generates an image from a prompt using Fal.ai and shows the progress of the task on the frontend using Trigger.dev Realtime."
55
---
66

7+
## GitHub repo
8+
9+
<Card
10+
title="View the project on GitHub"
11+
icon="GitHub"
12+
href="https://github.com/triggerdotdev/examples/tree/main/realtime-fal-ai-image-generation"
13+
>
14+
Click here to view the full code for this project in our examples repository on GitHub. You can
15+
fork it and use it as a starting point for your own project.
16+
</Card>
17+
718
## Walkthrough
819

920
This video walks through the process of creating this task in a Next.js project.

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

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ import NextjsTroubleshootingButtonSyntax from "/snippets/nextjs-button-syntax.md
1717
import WorkerFailedToStartWhenRunningDevCommand from "/snippets/worker-failed-to-start.mdx";
1818
import SupabaseDocsCards from "/snippets/supabase-docs-cards.mdx";
1919

20-
<Info>
21-
The project created in this guide can be found in this [GitHub
22-
repo](https://github.com/triggerdotdev/example-projects/tree/main/supabase).
23-
</Info>
24-
2520
## Overview
2621

2722
Supabase edge functions allow you to trigger tasks either when an event is sent from a third party (e.g. when a new Stripe payment is processed, when a new user signs up to a service, etc), or when there are any changes or updates to your Supabase database.
@@ -36,6 +31,17 @@ This guide shows you how to set up and deploy a simple Supabase edge function ex
3631
- [Create a Trigger.dev account](https://cloud.trigger.dev)
3732
- [Create a new Trigger.dev project](/guides/dashboard/creating-a-project)
3833

34+
## GitHub repo
35+
36+
<Card
37+
title="View the project on GitHub"
38+
icon="GitHub"
39+
href="https://github.com/triggerdotdev/examples/tree/main/supabase-edge-functions"
40+
>
41+
Click here to view the full code for this project in our examples repository on GitHub. You can
42+
fork it and use it as a starting point for your own project.
43+
</Card>
44+
3945
## Initial setup
4046

4147
<Steps>

docs/guides/frameworks/supabase-edge-functions-database-webhooks.mdx

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,14 @@ import NextjsTroubleshootingButtonSyntax from "/snippets/nextjs-button-syntax.md
1313
import WorkerFailedToStartWhenRunningDevCommand from "/snippets/worker-failed-to-start.mdx";
1414
import SupabaseDocsCards from "/snippets/supabase-docs-cards.mdx";
1515

16-
<Info>
17-
The project created in this guide can be found in this [GitHub
18-
repo](https://github.com/triggerdotdev/example-projects/tree/main/supabase).
19-
</Info>
20-
2116
## Overview
2217

2318
Supabase and Trigger.dev can be used together to create powerful workflows triggered by real-time changes in your database tables:
2419

2520
- A Supabase Database Webhook triggers an Edge Function when a row including a video URL is inserted into a table
2621
- The Edge Function triggers a Trigger.dev task, passing the `video_url` column data from the new table row as the payload
2722
- The Trigger.dev task then:
23+
2824
- Uses [FFmpeg](https://www.ffmpeg.org/) to extract the audio track from a video URL
2925
- Uses [Deepgram](https://deepgram.com) to transcribe the extracted audio
3026
- Updates the original table row using the `record.id` in Supabase with the new transcription using `update`
@@ -38,6 +34,17 @@ Supabase and Trigger.dev can be used together to create powerful workflows trigg
3834
- [Create a new Trigger.dev project](/guides/dashboard/creating-a-project)
3935
- [Create a new Deepgram account](https://deepgram.com/) and get your API key from the dashboard
4036

37+
## GitHub repo
38+
39+
<Card
40+
title="View the project on GitHub"
41+
icon="GitHub"
42+
href="https://github.com/triggerdotdev/examples/tree/main/supabase-edge-functions"
43+
>
44+
Click here to view the full code for this project in our examples repository on GitHub. You can
45+
fork it and use it as a starting point for your own project.
46+
</Card>
47+
4148
## Initial setup
4249

4350
<Steps>

0 commit comments

Comments
 (0)