Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# API Reference | GeoFire
# API Reference | ReactFire


## Table of Contents
Expand Down
7 changes: 3 additions & 4 deletions examples/commentsBox/js/app.js
Original file line number Diff line number Diff line change
@@ -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);

Expand Down
5 changes: 5 additions & 0 deletions examples/todoApp/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "reactfiretodoapp"
}
}
10 changes: 8 additions & 2 deletions examples/todoApp/firebase.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"firebase": "reactfiretodoapp",
"public": "."
"hosting": {
"public": ".",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
7 changes: 3 additions & 4 deletions examples/todoApp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down