melboudali / React-Shop

Discover the latest fashion trends with React-Shop. Shop the new collection of clothing, footwear, accessories, beauty products, and more. https://react-shop2.herokuapp.com/
MIT License
5 stars 0 forks source link
hacktoberfest material-ui nodejs react redux redux-saga stripe

Firebase Installation

  1. Create Firebase project.
  2. Go to Project settings > General > Your apps, then click Add app.
  3. Register the web app and install Firebase SDK:
npm install firebase
  1. Create .env.local file and add these env vars:
REACT_APP_APIKEY= '...'
REACT_APP_AUTHDOMAIN= '...'
REACT_APP_DATABASEURL= '...'
REACT_APP_PROJECTID= '...'
REACT_APP_STORAGEBUCKET= '...'
REACT_APP_MESSAGINGSENDERID= '...'
REACT_APP_APPID= '...'
REACT_APP_MESUREMENTID= '...'

If you don't know where to find the values you can go to Project settings > General > Your apps.

Authentication

  1. Go to Authentication > Sign-in method > Sign-in providers, then add and enable these providers:
  1. Got to Authorized domains then add localhost and all the other domains.

Cloud Firestore

  1. Go to Rules and add these:
// Allow read/write access on all documents to any user signed in to the application
service cloud.firestore {
  match /databases/{database}/documents {
    match /users/{userId}{
        allow get, create, update: if request.auth != null && request.auth.uid == userId;
    }
    match /Collections/{collection}{
        allow read;
    }  }
}
  1. Create two Collection:
title: string;
items: {
id: number;
name: string;
description: string;
firstImageUrl: string;
secondImageUrl :string;
thirdImageUrl: string
fourthImageUrl: string;
colors: string[];
size: number[];
newPrice: number;
oldPrice: number;
orders: number;
rate: number;
}[];