Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sagivo committed Mar 16, 2018
1 parent 014c3b8 commit c202b53
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions README.md
Expand Up @@ -19,7 +19,27 @@ The state is managed by mobX.

## Install
- Make sure you have electron and react istalled first.
- You will also need to provide credentials to a firebase account under `src/helpers/firebase.js`.
- You will also need to create a firebase file account under `src/helpers/firebase.js` with this code (make sure to insert your credentials):
```js
const firebase = window.firebase;
const config = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
}

firebase.initializeApp(config);
const db = firebase.firestore();
const auth = firebase.auth();

export { auth, db }

```

To start developing:
```
yarn install
yarn dev
Expand All @@ -46,6 +66,3 @@ yarn publish
## Donate
The best donation is by submiting a PR and improving the code.
Alternatively, you can just [buy me a coffee](https://www.buymeacoffee.com/sagivo)



0 comments on commit c202b53

Please sign in to comment.