https://github.com/shgtkshruch/dotinstall-firebase-basic
https://github.com/shgtkshruch/dotinstall-firebase-basic
dotinstall firebase
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shgtkshruch/dotinstall-firebase-basic
- Owner: shgtkshruch
- Created: 2018-08-25T12:17:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-05T12:05:09.000Z (almost 8 years ago)
- Last Synced: 2025-03-22T01:14:24.704Z (over 1 year ago)
- Topics: dotinstall, firebase
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotinstall-firebase-basic
lesson: [Learning with JavaScript Introduction to Firebase : dotinstall](https://dotinstall.com/lessons/basic_firebase)
## Settings
create `js/config.js` to setting Firebase.
```js
export default {
apiKey: "your-api-key",
authDomain: "your-auth-domain",
databaseURL: "your-datbae-url",
projectId: "your-project-id",
storageBucket: "your-storage-bucket",
messagingSenderId: "your-messageing-sender-id"
};
```
And run following command.
```sh
npm start
```