Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

LekoArts/gatsby-source-potterapi

Repository files navigation

gatsby-source-potterapi

Source plugin for https://www.potterapi.com/. You can find an example in the example directory.

Install

npm install --save gatsby-source-potterapi

How to use

Prerequisites

Go to potterapi.com and create an account. Afterwards you can see your API key on your profile.

Save the API key in an environment file like:

POTTER_KEY=your-api-key-here

gatsby-config

Add the plugin and define the API key.

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-source-potterapi',
      options: {
        key: process.env.POTTER_KEY,
      },
    },
  ],
}