Skip to content

A Chat application built with React, MaterialUI, Firebase and deployed on Vercel

Notifications You must be signed in to change notification settings

ManishMadan2882/sync-chat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SynChat built with React.js, Firebase and Material UI with Google Authentication

Live demo

Features

Login with Google

image

Connect with other users

image

Realtime communication

image

Responsive UI

image

Quick Start:

  • git clone
  • cd sync-chat
  • Add your firebase configuration to firebase.js file on /src
  • npm install
  • npm start

Additional Configuration:

  1. Create Firestore Database
  2. 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 application built with React, MaterialUI, Firebase and deployed on Vercel

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published