An open API service indexing awesome lists of open source software.

https://github.com/shgtkshruch/dotinstall-firebase-basic


https://github.com/shgtkshruch/dotinstall-firebase-basic

dotinstall firebase

Last synced: 3 months ago
JSON representation

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
```