Skip to content

replicate/getting-started-nextjs

Repository files navigation

Getting started with Next.js and Replicate

iguana

This is a Next.js template project that's preconfigured to work with Replicate's API.

It uses Next's newer App Router and Server Components.

You can use this as a quick jumping-off point to build a web app using Replicate's API, or you can recreate this codebase from scratch by following the guide at replicate.com/docs/get-started/nextjs

Noteworthy files

Running the app

Install dependencies:

npm install

Create a git-ignored text file for storing secrets like your API token:

cp .env.example .env.local

Add your Replicate API token to .env.local:

REPLICATE_API_TOKEN=<your-token-here>

Run the development server:

npm run dev

Open http://localhost:3000 with your browser.

For detailed instructions on how to create and use this template, see replicate.com/docs/get-started/nextjs

Webhooks

Webhooks provide real-time updates about your predictions. When you create a prediction or training, specify a URL that you control and Replicate will send HTTP POST requests to that URL when the prediction is created, updated, and completed.

This app is set up to optionally request, receive, and validate webhooks.

How webhooks work

  1. You specify a webhook URL when creating a prediction in app/api/predictions/[id]/route.js
  2. Replicate sends POST requests to the handler in app/api/webhooks/route.js as the prediction is updated.

Requesting and receiving webhooks

To test webhooks in development, you'll need to create a secure tunnel to your local machine, so Replicate can send POST requests to it. Follow these steps:

  1. Download and set up ngrok, an open-source tool that creates a secure tunnel to your local machine so you can receive webhooks.
  2. Run ngrok to create a publicly accessible URL to your local machine: ngrok http 3000
  3. Copy the resulting ngrok.app URL and paste it into .env.local, like this: NGROK_HOST="https://020228d056d0.ngrok.app".
  4. Leave ngrok running.
  5. In a separate terminal window, run the app with npm run dev
  6. Open localhost:3000 in your browser and enter a prompt to generate an image.
  7. Go to replicate.com/webhooks to see your prediction status.

Validating incoming webhooks

Follow these steps to set up your development environment to validate incoming webhooks:

  1. Get your signing secret by running:
    curl -s -X GET -H "Authorization: Bearer $REPLICATE_API_TOKEN" https://api.replicate.com/v1/webhooks/default/secret
    
  2. Add this secret to .env.local, like this: REPLICATE_WEBHOOK_SIGNING_SECRET=whsec_...
  3. Now when you run a prediction, the webhook handler in app/api/webhooks/route.js will verify the webhook.