gatsby-theme-userbase-auth

0.0.2 • Public • Published

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

Package Sidebar

Install

npm i gatsby-theme-userbase-auth

Weekly Downloads

0

Version

0.0.2

License

MIT

Unpacked Size

9.57 kB

Total Files

19

Last publish

Collaborators

  • dayhaysoos