Fixed some docs typos and updated examples Firebase project (#97)

This commit is contained in:
Jacob Wenger
2016-05-25 16:54:54 -07:00
parent 094bef28bf
commit 9885e765c3
6 changed files with 21 additions and 12 deletions

View File

@@ -112,4 +112,4 @@ example, if we no longer want `this.state.items` to be bound to node, we can cal
This was just a quick run through of the basics of ReactFire. For a more in-depth explanation of how
to use ReactFire, [check out the ReactFire guide](guide.md) or dig right into the
[ReactFire APIreference](reference.md).
[ReactFire API reference](reference.md).

View File

@@ -1,4 +1,4 @@
# API Reference | GeoFire
# API Reference | ReactFire
## Table of Contents

View File

@@ -1,8 +1,7 @@
var config = {
apiKey: 'AIzaSyD6NMVI9vCk3-VzXY5k_mRLSZS8waWZFjA',
authDomain: 'reactfire-bbede.firebaseapp.com',
databaseURL: 'https://reactfire-bbede.firebaseio.com',
storageBucket: 'reactfire-bbede.appspot.com',
apiKey: "AIzaSyCdxGmqWURL8YUfGPK3OVANsyvsE0cHV5s",
authDomain: "reactfiretodoapp.firebaseapp.com",
databaseURL: "https://reactfiretodoapp.firebaseio.com"
};
firebase.initializeApp(config);

View File

@@ -0,0 +1,5 @@
{
"projects": {
"default": "reactfiretodoapp"
}
}

View File

@@ -1,4 +1,10 @@
{
"firebase": "reactfiretodoapp",
"public": "."
"hosting": {
"public": ".",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}

View File

@@ -19,10 +19,9 @@
<!-- Initialize the Firebase SDK -->
<script>
var config = {
apiKey: "AIzaSyD6NMVI9vCk3-VzXY5k_mRLSZS8waWZFjA",
authDomain: "reactfire-bbede.firebaseapp.com",
databaseURL: "https://reactfire-bbede.firebaseio.com",
storageBucket: "reactfire-bbede.appspot.com",
apiKey: "AIzaSyCdxGmqWURL8YUfGPK3OVANsyvsE0cHV5s",
authDomain: "reactfiretodoapp.firebaseapp.com",
databaseURL: "https://reactfiretodoapp.firebaseio.com"
};
firebase.initializeApp(config);
</script>