Files
triggerdotdev--trigger.dev/docs/snippets/supabase-docs-cards.mdx
T
2026-07-13 13:32:57 +08:00

44 lines
1.3 KiB
Plaintext

## Learn more about Supabase and Trigger.dev
### Full walkthrough guides from development to deployment
<CardGroup cols={1}>
<Card
title="Edge function hello world guide"
icon="book"
href="/guides/frameworks/supabase-edge-functions-basic"
>
Learn how to trigger a task from a Supabase edge function when a URL is visited.
</Card>
<Card
title="Database webhooks guide"
icon="book"
href="/guides/frameworks/supabase-edge-functions-database-webhooks"
>
Learn how to trigger a task from a Supabase edge function when an event occurs in your database.
</Card>
<Card
title="Supabase authentication guide"
icon="book"
href="/guides/frameworks/supabase-authentication"
>
Learn how to authenticate Supabase tasks using JWTs for Row Level Security (RLS) or service role
keys for admin access.
</Card>
</CardGroup>
### Task examples with code you can copy and paste
<CardGroup cols={2}>
<Card
title="Supabase database operations"
icon="bolt"
href="/guides/examples/supabase-database-operations"
>
Run basic CRUD operations on a table in a Supabase database using Trigger.dev.
</Card>
<Card title="Supabase Storage upload" icon="bolt" href="/guides/examples/supabase-storage-upload">
Download a video from a URL and upload it to Supabase Storage using S3.
</Card>
</CardGroup>