Skip to content

A chat app like WhatsApp where users can chat and share with their other users. It uses firebase user authentication and cloud storage and database as its backend.

Notifications You must be signed in to change notification settings

monukri4548/chatApp-Firebase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chatApp-Firebase

Quick Start:

git clone
cd react-firebase-chatApp
Add your firebase configuration to firebase.js file on /src
npm install
npm start

Additional Configuration :

Create Firestore Database
On firebase console navigate to Firestore Database -> Rules -> Edit Rules replace the entire code to this:
  
  
  rules_version = '2';
  service cloud.firestore {
  match /databases/{database}/documents {
  match /{document=**} {
  allow read, write: if request.auth != null;
  }
  }
  }

About

A chat app like WhatsApp where users can chat and share with their other users. It uses firebase user authentication and cloud storage and database as its backend.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published