Full-Stack Firebase
  • Introduction
  • Introduction
    • Full-Stack Firebase
    • Why Firebase?
    • What is serverless?
    • Prerequisites
    • Overview & Structure
    • Write your first query
    • Links
    • Downloadable Notes
  • Firebase Console
    • Introduction
    • Walkthrough
  • Firebase Tools
    • Introduction
    • Walkthrough
  • Firebase Authentication
    • Introduction
    • Walkthrough
    • Challenge
    • Notes
  • Cloud Firestore
    • Introduction
    • Walkthrough
    • Security Rules
    • Indexes
    • Challenge
    • Notes
  • Realtime Database
    • Introduction
    • Walkthrough
    • Security Rules
    • Challenge
    • Notes
  • Cloud Functions for Firebase
    • Introduction
    • Walkthrough
    • Challenge
    • Notes
  • Firebase Storage
    • Introduction
    • Walkthrough
    • Security Rules
    • Challenge
    • Notes
  • Cloud Messaging
    • Introduction
    • Walkthrough
    • Challenge
    • Notes
  • Firebase Hosting
    • Introduction
    • Walkthrough
    • Challenge
    • Notes
Powered by GitBook
On this page
  • Cloud Firestore
  • Find the repo
  • Localhost installation
  • Edit environment files
  • Start the app
  • Complete the challenge
  1. Cloud Firestore

Challenge

PreviousIndexesNextNotes

Last updated 6 years ago

Cloud Firestore

Find the repo

We'll be working on a branch of our repo named .

Localhost installation

Pull directly from GitHub...

git clone https://github.com/how-to-firebase/firelist-react.git
cd firelist-react
git checkout challenge-firestore

Edit environment files

Update the following files with your own project details:

  • /.firebaserc

  • /public/environments/environment.dev.js

  • /public/environments/environment.js

Start the app

Once you're on the branch, make sure to run yarn or npm install to get your Node.js dependencies.

Then run yarn start or npm run start to spin up the development server.

yarn
yarn start

Complete the challenge

Search the codebase for Challenge Firestore to find all of the challenges.

Read the comments and complete the steps in those files.

firelist-react
challenge-firestore
the repo