https://github.com/schafeld/firebase-chat
A basic chat app based on Firebase
https://github.com/schafeld/firebase-chat
Last synced: over 1 year ago
JSON representation
A basic chat app based on Firebase
- Host: GitHub
- URL: https://github.com/schafeld/firebase-chat
- Owner: schafeld
- License: apache-2.0
- Created: 2020-11-27T10:28:43.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-14T12:46:29.000Z (over 5 years ago)
- Last Synced: 2025-03-14T16:47:34.893Z (over 1 year ago)
- Language: JavaScript
- Size: 126 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Firebase-Chat
A basic chat app based on Firebase
Based on a [Google Firebase tutorial](https://codelabs.developers.google.com/codelabs/firebase-web#1), [starter code](https://github.com/firebase/codelab-friendlychat-web) and [Tutorial part 2](https://codelabs.developers.google.com/codelabs/firebase-cloud-functions?hl=en#0) (Friendly Chat).
## Instructions and notes
Run Firebase app locally:
```shell
firebase serve --only hosting
```
With local server running, configuration files with app details like URLs are inspectable, e.g. by visiting:
```shell
http://localhost:5000/__/firebase/init.js
```
Deploy webpage(s) and open deployed site:
```shell
firebase deploy --except functions
firebase open hosting:site
```
## Cloud Vision API
For details see [Cloud Vision API chapter](https://codelabs.developers.google.com/codelabs/firebase-cloud-functions?hl=en#8) of basic tutorial.
## License
See [LICENSE](LICENSE)
Basically a derivative work from a Google tutorial under Apache license.