1.0.1 • Published 5 years ago

gatsby-theme-contentful-gallery v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Gatsby Theme Contentful Gallery

Getting Started

Create a new Contentful Space

https://www.contentful.com/faq/basics/#how-do-i-create-a-space

Run the setup scripts

yarn global add contentful-management
contentful space import --space-id SPACE_ID --mt MANAGEMENT_TOKEN --content-file scripts/contentful-export.json

Add the plugin to your gatsby-config

yarn add gatsby-theme-contentful-gallery
  plugins: [
    {
      resolve: "gatsby-theme-contentful-gallery",
      options: {
        contentfulSpaceId: YOU_SPACE_ID,
        contentfulAccessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
      },
    },
  ...
  ]