Trigger anything from a database change. Sync your database and services.

Using our official Supabase integration

  • Easily subscribe to Supabase webhooks to trigger your jobs.

  • Create any tasks possible with the Supabase API.

  • Use io.runTask() and the official SDK or fetch.

  • Example code using Supabase

    Below are some working code examples of how you can use Supabase with Trigger.dev. These samples are open source and maintained by the community, you can copy and paste them into your own projects.

    import { SupabaseManagement, Supabase } from "@trigger.dev/supabase";
    import { OpenAI } from "@trigger.dev/openai";
    import { TriggerClient } from "@trigger.dev/sdk";
    const openai = new OpenAI({
    id: "open-ai",
    apiKey: process.env.OPENAI_API_KEY!,
    });
    // Use Supabase integration to run authenticated tasks using the service_role key
    const supabase = new Supabase({
    id: "supabase",
    supabaseKey: process.env.SUPABASE_SERVICE_ROLE_KEY!,
    supabaseUrl: "https://<project id>.supabase.co",
    });
    const supabaseManagement = new SupabaseManagement({
    id: "supabase-management",
    });
    // Pass the generated types to the db instance
    const db = supabase.db<Database>("https://<project id>.supabase.co");
    client.defineJob({
    id: "ai-all-the-things",
    name: "AI all the images",
    version: "1.0.0",
    // Subscribe to objects being inserted
    trigger: db.onInserted({
    schema: "storage",
    table: "objects",
    filter: {
    record: {
    bucket_id: ["uploads"],
    name: [
    {
    $endsWith: ".png",
    },
    ],
    },
    },
    }),
    // Define the integrations that this Job will use
    integrations: {
    supabase,
    openai,
    },
    run: async (payload, io, ctx) => {
    // Assuming the bucket is private, we create a signed url for temporary access
    // Use the native supabase client to get a signed url
    const { error, data } = await io.supabase.client.storage
    .from("example_bucket")
    .createSignedUrl(payload.record.name, 60);
    if (error) {
    throw error;
    }
    const imageVariation = await io.openai.createImageVariation(
    "variation-image",
    {
    image: data.signedUrl,
    n: 2,
    response_format: "url",
    size: "512x512",
    }
    );
    // do something with the imageVariation response
    },
    });
    ,