You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ We'd love for you to contribute to our source code and to make the Firebase Node
10
10
-[Coding Rules](#rules)
11
11
-[Signing the CLA](#cla)
12
12
13
-
## <aname="coc"></a>Code of Conduct
13
+
## <aname="coc"></a>Code of Conduct
14
14
15
15
As contributors and maintainers of the Firebase Node.JS Quickstarts project, we pledge to respect everyone who contributes by posting issues, updating documentation, submitting pull requests, providing feedback in comments, and any other activities.
16
16
@@ -22,7 +22,7 @@ If any member of the community violates this code of conduct, the maintainers of
22
22
23
23
If you are subject to or witness unacceptable behavior, or have any other concerns, please drop us a line at nivco@google.com.
24
24
25
-
## <aname="question"></a>Got a Question or Problem?
25
+
## <aname="question"></a>Got a Question or Problem?
26
26
27
27
If you have questions about how to use the Firebase Node.JS Quickstarts, please direct these to [StackOverflow][stackoverflow] and use the `firebase` tag. We are also available on GitHub issues.
28
28
@@ -37,14 +37,14 @@ Where have you looked?
37
37
Where did you expect to find this information?
38
38
```
39
39
40
-
## <aname="issue"></a>Found an Issue?
40
+
## <aname="issue"></a>Found an Issue?
41
41
If you find a bug in the source code or a mistake in the documentation, you can help us by
42
42
submitting an issue to our [GitHub Repository][github]. Even better you can submit a Pull Request
43
43
with a fix.
44
44
45
45
See [below](#submit) for some guidelines.
46
46
47
-
## <aname="submit"></a>Submission Guidelines
47
+
## <aname="submit"></a>Submission Guidelines
48
48
49
49
### Submitting an Issue
50
50
Before you submit your issue search the archive, maybe your question was already answered.
@@ -161,11 +161,11 @@ from the main (upstream) repository:
161
161
git pull --ff upstream master
162
162
```
163
163
164
-
## <a name="rules"></a>Coding Rules
164
+
## <a name="rules"></a>Coding Rules
165
165
166
166
We generally follow the [Google JavaScript style guide][js-style-guide].
167
167
168
-
## <a name="cla"></a>Signing the CLA
168
+
## <a name="cla"></a>Signing the CLA
169
169
170
170
Please sign our [Contributor License Agreement][google-cla] (CLA) before sending pull requests. For any code
171
171
changes to be accepted, the CLA must be signed. It's a quick process, we promise!
Copy file name to clipboardExpand all lines: database/README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
Firebase Node Realtime Database Quickstart
1
+
Firebase Node.js Realtime Database Quickstart
2
2
==========================================
3
3
4
-
The Node Firebase Database quickstart demonstrates how to connect to and use the Firebase Realtime Database using Node through a simple social blogging app. It will interoperate with the Web, iOS and Android database quickstarts.
4
+
The Node.js Firebase Database quickstart demonstrates how to connect to and use the Firebase Realtime Database using Node.js through a simple social blogging app. It will interoperate with the Web, iOS and Android database quickstarts.
5
5
6
6
This server will:
7
7
- Update the star counts for all posts.
@@ -17,12 +17,12 @@ Getting Started
17
17
---------------
18
18
19
19
- Create your project on the [Firebase Console](https://console.firebase.google.com).
20
-
- Create a Service account as described in [Adding Firebase to your Server](https://firebase.google.com/docs/server/setup) and drop the file in this directory.
21
-
- Change the `<PROJECT_ID>` and `<PATH_TO_SERVICE_ACCOUNT_CREDENTIAL_FILE>` placeholders in `index.js`.
22
-
- Configure your email transport in `index.js`.
20
+
- Create a service account as described in [Adding Firebase to your Server](https://firebase.google.com/docs/server/setup) and drop the file in this directory. Or use the provided test service account.
21
+
- Change the `<PROJECT_ID>` and `<PATH_TO_SERVICE_ACCOUNT_CREDENTIAL_FILE>` placeholders in [`index.js`](index.js).
22
+
- Configure your email transport in [`index.js`](index.js).
23
23
- Run `npm install`.
24
-
- Run `node index.js` to run the node app locally.
25
-
- Configure and run one of the Database quickstarts for [Web](https://github.com/firebase/quickstart-js/tree/master/database), [iOS](https://github.com/firebase/quickstart-js/tree/master/database) or [Android](https://github.com/firebase/quickstart-android/tree/master/database). Then use one of these apps to publish new posts: you should receive email notifications when one of your posts have received a new star and the starred counter should be ept up to date by the app.
24
+
- Run `node index.js` to run the Node.js app locally.
25
+
- Configure and run one of the Database quickstarts for [Web](https://github.com/firebase/quickstart-js/tree/master/database), [iOS](https://github.com/firebase/quickstart-ios/tree/master/database) or [Android](https://github.com/firebase/quickstart-android/tree/master/database). Then use one of these apps to publish new posts: you should receive email notifications when one of your posts have received a new star and the starred counter should be kept up to date by the app.
0 commit comments