Skip to content

marcomelilli/gatsby-firebase-simple-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e3b4ca8 · Feb 28, 2024

History

34 Commits
Jun 2, 2022
Dec 1, 2019
Jun 2, 2022
Oct 19, 2020
Dec 1, 2019
Feb 28, 2024
Nov 30, 2020
Jun 2, 2022
Dec 1, 2019
Nov 30, 2020
Jul 21, 2022
Jun 2, 2022
Jun 2, 2022
Jun 2, 2022

Repository files navigation

Logo

Gatsby Firebase Authentication Starter

This is a gatsby starter to show how an authentication workflow is implemented in Gatsby using Firebase as authentication provider.

This starter follows the best practices described in the official gatsby site:

It uses Gatsby Plugin Create Client Path to set private routes.

How it works in short:

  • Gatsby renders all unauthenticated routes as usual static pages.
  • Authenticated routes are whitelisted as client-only (in this starter all dynamic pages are under the path 'mysite.com/app/*').
  • Logged-out users are redirected to the login page if they attempt to visit private routes.
  • Logged-in users will see their private content.

Getting started with Firebase

Copy and rename .env.sample to .env.development and .env.production in your root directory. Use these environment variables for Firebase:

FIREBASE_API_KEY=<YOUR_FIREBASE_API_KEY>
FIREBASE_AUTH_DOMAIN=<YOUR_FIREBASE_AUTH_DOMAIN>
FIREBASE_DATABASE_URL=<YOUR_FIREBASE_DATABASE_URL>
FIREBASE_PROJECT_ID=<YOUR_FIREBASE_PROJECT_ID>
FIREBASE_STORAGE_BUCKET=<YOUR_FIREBASE_STORAGE_BUCKET>
FIREBASE_MESSAGING_SENDER_ID=<YOUR_FIREBASE_MESSAGING_SENDER_ID>
FIREBASE_APP_ID=<YOUR_FIREBASE_APP_ID>

Start developing

npm install
gatsby develop 

Contributing

If you want to contribute to this starter, consider:

  • Reporting bugs and errors
  • Improve the documentation
  • Creating new features and pull requests

All contributions are welcome!