Skip to content

frontarm/react-firebase-bacon

Repository files navigation

Make Bacon with React & Firebase

This is the companion repository to React, Firebase & Bacon -- a complete guide to building a real-world app with React.

The repository contains branches for individual steps within the course. In the first few sections, you'll create and deploy a small landing page -- with hooks, Create React App and Firebase:

Then, within later steps, you'll add authentication, profiles, payments, modals -- and other features from vouch.chat.

Outline

This outline just includes branches in this repository. You can the full course outline at Frontend Armory.

1. Setting up

  • step-010 – Create an app and deploy it

2. Basic hooks and data fetching

  • step-020 – Fetch and display data with effects
  • step-021 – Store form state with useState

3. Forms, errors and state management

4. Styles and animations

5. Routing and data subscriptions

6. Build a backend with Firebase

You can see the result of this step online at vouch.chat.

7. Authentication

coming soon

8. Context and advanced hooks

coming soon

Installation

If you just want to get the app working without the full walkthrough, here's what to do.

1. Firebase app

Before starting, you'll need a Firebase project. Once you've set it up, you'll need your firebase project's config object, which is available in the Firebase console and looks a little like this:

const firebaseConfig = {
  apiKey: "qwertyuiopasdfgh_asdfasdfasdfasdfasdfas",
  authDomain: "something.firebaseapp.com",
  databaseURL: "https://something.firebaseio.com",
  projectId: "something",
  storageBucket: "",
  messagingSenderId: "111111111111",
  appId: "1:111111111111:web:1rstarstarstarst"
};

You'll also need to ensure that your project has a Firestore database available. To start, you can create it in test mode -- we'll lock it down later.

Here's the full process to configure your Firebase project and Firestore database:

Firebase project setup

2. Clone and install

Once you've got your Firebase config, start by cloning the repository and installing its dependencies

git clone https://github.com/frontarm/react-firebase-bacon.git app
cd app
npm install
cd functions
npm install
cd ..

3. Local configuration files

To actually build and deploy the app, you'll need to create some configuration files:

cp .env.example .env.development.local
cp .env.example .env.production.local

These two files provide configuration for your development server and distributable app, respectively. They start out blank, so you'll need to add the relevant parts from your Firebase config. The end will result will look something like this:

// .env files
REACT_APP_FIREBASE_API_KEY=qwertyuiopasdfgh_asdfasdfasdfasdfasdfas
REACT_APP_FIREBASE_AUTH_DOMAIN=something.firebaseapp.com
REACT_APP_FIREBASE_DATABASE_URL=https://something.firebaseio.com
REACT_APP_FIREBASE_PROJECT_ID=something
REACT_APP_FIREBASE_STORAGE_BUCKET=
REACT_APP_FIREBASE_MESSAGING_SENDER_ID=111111111111
REACT_APP_FIREBASE_APP_ID=1:111111111111:web:1rstarstarstarst

You'll also need to add a functions/.serviceaccount.json file, which includes credentials for your development Firebase service account -- needed to test your Firebase functions locally. You can download the contents of this file from the Firebase console:

Firebase project setup

Once you've downloaded the service account file, just move it into your functions directory and rename it to .serviceaccount.json.

All of these configuration files are listed in .gitignore, so you don't need to worry about accidentally pushing any private configuration to a public repository.

4. Start the dev server

You can test your configuration by starting the development server:

npm run start:client

This should open a browser window to http://localhost:3000/, where if everything has gone to plan, you'll see the landing page. However, before being able to submit the form, you'll first need to start a server to simulate your Firebase functions locally.

5. Set up the Firebase CLI tools

Before continuing, you'll first need to make sure you have the Firebase CLI tools installed:

npm install -g firebase-tools

Once installed, you'll also need to login to your Firebase account:

firebase login

This will give you a firebase command, which lets you deploy your app to Firebase hosting, deploy Firebase functions, and run Firebase functions locally.

6. Create your .firebaserc file

In order to know which Firebase project to use, the firebase command looks for the current project's ID in a file could .firebaserc -- which you'll need to create. The easiest way to do this is by running firebase use --add, selecting a project, and then naming it default when prompted:

$ firebase use --add

? Which project do you want to add? vouchchat
? What alias do you want to use for this project? (e.g. staging) default

Created alias default for vouchchat.
Now using alias default (vouchchat)

7. Start the local Firebase functions server

Once you've set up the Firebase CLI tools, you can start a local server in a separate terminal window to simulate your Firebase functions:

npm run start:functions

If this has worked correctly, then you should now be able to submit the form on your landing page!

You'll usually want both the React and Firebase dev servers running simultaneously, so this repository also includes a special script that will start both of them in the same tab:

npm start

8. Deploy!

Once you've completed all of the earlier steps, deploying your app to the internets is simple:

npm run build:development # or npm run build:production
firebase deploy

This will build your app's distributable files with the react-scripts command, before calling firebase deploy to upload the new app to Firebase hosting, deploy cloud functions, and lock down your database's access rules. Once complete, your new app's URL will be printed to the console.

If everything is set up correctly, you should now be able to submit the form in the live app with another email address, and see it appear in your Firebase console after a refresh. Congratulations -- you've got your landing page working! All that's left is to play with the styles to make it work for your brand.

9. Bonus step: add a domain

Within the Firebase Console's Hosting area, you can add a domain name for your landing page -- so that it looks a little more official.

How does this all work though?

Want to build real apps that make real bacon? Then check out React, Firebase & Bacon -- and while you're there, pick up a free CLI cheatsheet with many of the commands from this guide. I'll see you there!

- James K Nelson

License

Code is licensed under the MIT license. Images are not licensed.

About

Companion repository for the React, Firebase & Bacon course

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published