https://github.com/hangsbreaker/firebase-realtime-chat
Firebase realtime database with chat
https://github.com/hangsbreaker/firebase-realtime-chat
Last synced: 3 months ago
JSON representation
Firebase realtime database with chat
- Host: GitHub
- URL: https://github.com/hangsbreaker/firebase-realtime-chat
- Owner: hangsbreaker
- Created: 2023-06-09T05:22:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-09T05:26:38.000Z (over 2 years ago)
- Last Synced: 2025-01-24T00:38:24.983Z (9 months ago)
- Language: PHP
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# firebase-realtime-chat
Simple chat app with Firebase realtime databaseURL Reference
- Tutorial
https://www.cometchat.com/tutorials/how-to-build-a-chat-app-with-firebase
- Doc query get by url json data
https://firebase.google.com/docs/database/rest/retrieve-dataFirebase example rule
{
"rules": {
"messages":{
".indexOn":["timestamp"]
},
".read": true,
".write": true,
}
}