https://github.com/zaszab/cloud-firestore-javascript
Getting Started app With Cloud Firestore on the Web with Javascript. Based on Google Firecast video
https://github.com/zaszab/cloud-firestore-javascript
firebase firestore-database javascript
Last synced: 2 months ago
JSON representation
Getting Started app With Cloud Firestore on the Web with Javascript. Based on Google Firecast video
- Host: GitHub
- URL: https://github.com/zaszab/cloud-firestore-javascript
- Owner: zaszab
- Created: 2018-03-19T13:46:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-19T13:54:23.000Z (over 8 years ago)
- Last Synced: 2025-02-17T13:46:39.801Z (over 1 year ago)
- Topics: firebase, firestore-database, javascript
- Language: JavaScript
- Homepage: https://www.youtube.com/watch?v=2Vf1D-rUMwE
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started with Cloud Firestore with Javascript
Example Javascript application based on Firecast video:
https://www.youtube.com/watch?v=2Vf1D-rUMwE
## Getting Started
Modify the following rows in your index.js to your settings, which you can find at the Firebase console.
```
// Modify this to your configuration found at Firebase console
// https://console.firebase.google.com/u/0/project/[projectname]/overview
var config = {
apiKey: "[apikey]",
authDomain: "[projectname].firebaseapp.com",
databaseURL: "https://[projectname].firebaseio.com",
projectId: "[projectname]",
storageBucket: "[projectname].appspot.com",
messagingSenderId: "[senderid]"
};
```
Then open index.html in your browser.