Skip to content

Commit 9885e76

Browse files
author
Jacob Wenger
committed
Fixed some docs typos and updated examples Firebase project (#97)
1 parent 094bef2 commit 9885e76

File tree

6 files changed

+21
-12
lines changed

6 files changed

+21
-12
lines changed

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ example, if we no longer want `this.state.items` to be bound to node, we can cal
112112

113113
This was just a quick run through of the basics of ReactFire. For a more in-depth explanation of how
114114
to use ReactFire, [check out the ReactFire guide](guide.md) or dig right into the
115-
[ReactFire APIreference](reference.md).
115+
[ReactFire API reference](reference.md).

docs/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# API Reference | GeoFire
1+
# API Reference | ReactFire
22

33

44
## Table of Contents

examples/commentsBox/js/app.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
var config = {
2-
apiKey: 'AIzaSyD6NMVI9vCk3-VzXY5k_mRLSZS8waWZFjA',
3-
authDomain: 'reactfire-bbede.firebaseapp.com',
4-
databaseURL: 'https://reactfire-bbede.firebaseio.com',
5-
storageBucket: 'reactfire-bbede.appspot.com',
2+
apiKey: "AIzaSyCdxGmqWURL8YUfGPK3OVANsyvsE0cHV5s",
3+
authDomain: "reactfiretodoapp.firebaseapp.com",
4+
databaseURL: "https://reactfiretodoapp.firebaseio.com"
65
};
76
firebase.initializeApp(config);
87

examples/todoApp/.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "reactfiretodoapp"
4+
}
5+
}

examples/todoApp/firebase.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2-
"firebase": "reactfiretodoapp",
3-
"public": "."
2+
"hosting": {
3+
"public": ".",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
]
9+
}
410
}

examples/todoApp/index.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@
1919
<!-- Initialize the Firebase SDK -->
2020
<script>
2121
var config = {
22-
apiKey: "AIzaSyD6NMVI9vCk3-VzXY5k_mRLSZS8waWZFjA",
23-
authDomain: "reactfire-bbede.firebaseapp.com",
24-
databaseURL: "https://reactfire-bbede.firebaseio.com",
25-
storageBucket: "reactfire-bbede.appspot.com",
22+
apiKey: "AIzaSyCdxGmqWURL8YUfGPK3OVANsyvsE0cHV5s",
23+
authDomain: "reactfiretodoapp.firebaseapp.com",
24+
databaseURL: "https://reactfiretodoapp.firebaseio.com"
2625
};
2726
firebase.initializeApp(config);
2827
</script>

0 commit comments

Comments
 (0)