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: docs/storage/Firebase.md
+16-2
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,9 @@ However, you will be able to access it from multiple devices.
14
14
15
15
To use the Firebase backend, you should first set up a Firebase instance.
16
16
You can do this by clicking `CREATE NEW PROJECT` at https://console.firebase.google.com/.
17
+
You should use the older "Realtime Datbase", *not* firestore.
17
18
18
-
You should then be given your own Firebase project id,
19
+
You should then be given your own Firebase project id (or "Realtime Database URL"),
19
20
something like `something-fiery-2222`.
20
21
You should be able to now visit your console at a link like
21
22
https://console.firebase.google.com/project/${projectId}, e.g.
@@ -36,7 +37,7 @@ Visit the Authentication tab.
36
37
#### Set up database rules
37
38
38
39
Visit the `Database > Rules` section (https://console.firebase.google.com/project/${projectId}/database/rules).
39
-
Make sure the rules look like this (it should be the default):
40
+
The rules should look like this:
40
41
41
42
```
42
43
{
@@ -47,6 +48,19 @@ Make sure the rules look like this (it should be the default):
47
48
}
48
49
```
49
50
51
+
This default should work fine, but will give you email warnings about security. You can silence these emails in settings, or add an extra layer of security:
0 commit comments