Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 352 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 352 Bytes

Chatbase

The proof of concept of how to implement Chat with Firebase Database

https://earthchie.github.io/Chatbase/

Firebase Rule

{
  "rules": {
    ".read": "true",
    ".write": "true",
    
    "chatroom":{
      ".indexOn": "when"
    }
  }
}