fc609470c4
* Added overview for guides and examples section and split them all out * New supabase guide wip * Updated images and improved docs * Trimmed the supabase prereqs * Supabase guide wip * more updates * Replaced old database webhook guide * Created one intro page and removed snippets * Updated guide sidebar titles * Code updates * More improvements * Updates and added images * Compressed image * Updated guides descriptions and edge function basic * Removed bold * Updated redirects * Fixed broken links * Updated intro
51 lines
3.7 KiB
Plaintext
51 lines
3.7 KiB
Plaintext
---
|
|
title: "Frameworks, guides and examples overview"
|
|
sidebarTitle: "Introduction"
|
|
description: "An ever growing list of guides and examples to help you get setup with Trigger.dev."
|
|
---
|
|
|
|
import CardBun from "/snippets/card-bun.mdx";
|
|
import CardNodejs from "/snippets/card-nodejs.mdx";
|
|
import CardNextjs from "/snippets/card-nextjs.mdx";
|
|
import CardRemix from "/snippets/card-remix.mdx";
|
|
import CardSupabase from "/snippets/card-supabase.mdx";
|
|
|
|
## Frameworks
|
|
|
|
<CardGroup cols={3}>
|
|
<CardBun />
|
|
<CardNodejs />
|
|
<CardNextjs />
|
|
<CardRemix />
|
|
<CardSupabase />
|
|
</CardGroup>
|
|
|
|
## Guides
|
|
|
|
Get set up fast using our detailed walk-through guides.
|
|
|
|
| Guide | Description |
|
|
| :---------------------------------------------------- | :------------------------------------------------------------------------------- |
|
|
| [Prisma](/guides/frameworks/prisma) | This guide will show you how to setup Prisma with Trigger.dev |
|
|
| [Sequin database triggers](/guides/frameworks/sequin) | This guide will show you how to trigger tasks from database changes using Sequin |
|
|
|
|
## Example tasks
|
|
|
|
Tasks you can copy and paste to get started with Trigger.dev. They can all be extended and customized to fit your needs.
|
|
|
|
| Example task | Description |
|
|
| :---------------------------------------------------------------------------- | :----------------------------------------------------------------------------- |
|
|
| [DALL·E 3 image generation](/guides/examples/dall-e3-generate-image) | Use OpenAI's GPT-4o and DALL·E 3 to generate an image and text. |
|
|
| [Deepgram audio transcription](/guides/examples/deepgram-transcribe-audio) | Transcribe audio using Deepgram's speech recognition API. |
|
|
| [FFmpeg video processing](/guides/examples/ffmpeg-video-processing) | Use FFmpeg to process a video in various ways and save it to Cloudflare R2. |
|
|
| [OpenAI with retrying](/guides/examples/open-ai-with-retrying) | Create a reusable OpenAI task with custom retry options. |
|
|
| [PDF to image](/guides/examples/pdf-to-image) | Use `MuPDF` to turn a PDF into images and save them to Cloudflare R2. |
|
|
| [React to PDF](/guides/examples/react-pdf) | Use `react-pdf` to generate a PDF and save it to Cloudflare R2. |
|
|
| [Puppeteer](/guides/examples/puppeteer) | Use Puppeteer to generate a PDF or scrape a webpage. |
|
|
| [Resend email sequence](/guides/examples/resend-email-sequence) | Send a sequence of emails over several days using Resend with Trigger.dev. |
|
|
| [Sharp image processing](/guides/examples/sharp-image-processing) | Use Sharp to process an image and save it to Cloudflare R2. |
|
|
| [Stripe webhook](/guides/examples/stripe-webhook) | Trigger a task from Stripe webhook events. |
|
|
| [Supabase database operations](/guides/examples/supabase-database-operations) | Run basic CRUD operations on a table in a Supabase database using Trigger.dev. |
|
|
| [Supabase Storage upload](/guides/examples/supabase-storage-upload) | Download a video from a URL and upload it to Supabase Storage using S3. |
|
|
| [Vercel AI SDK](/guides/examples/vercel-ai-sdk) | Use Vercel AI SDK to generate text using OpenAI. |
|