0.0.2 • Published 4 years ago

gatsby-theme-userbase-auth v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

gatsby-theme-userbase-auth

A Gatsby that comes with an auth flow using Userbase

Config

Create a Userbase account or log in.

In your gatsby project, run, yarn add gatsby-theme-userbase-auth

Set up your environment variables

.env.development

Get your appId from here

USERBASE_APP_ID=YOUR_APP_ID_HERE

In gatsby-config.js, add the config below to your plugins array

require('dotenv').config({
  path: '.env.${process.env.NODE_ENV}',
})
module.exports ={
  plugins: [
    {
      resolve: 'gatsby-theme-userbase-auth',
      options: {
        APP_ID: process.env.USERBASE_APP_ID,
      }
    }
  ]
}

run gatsby develop

You should be able to use the signUp/Login button in the header