Skip to content

Commit 9f5b6e1

Browse files
authored
Cloud Firestore --> Firestore (#199)
1 parent 44267ba commit 9f5b6e1

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

firestore/solution-deletes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Solution: Recursive Deletes
22

33
This solution shows how to write a Cloud Function that deletes data
4-
in Cloud Firestore and securely call this function from your
4+
in Firestore and securely call this function from your
55
mobile app or website.
66

77
## Setup
@@ -39,4 +39,4 @@ mobile app or website.
3939
1. Enter the path of the document or collection you would like
4040
to delete, for example `things/thing1`, then click **DELETE**.
4141
42-
[iam-page]: https://console.cloud.google.com/project/_/iam-admin
42+
[iam-page]: https://console.cloud.google.com/project/_/iam-admin

firestore/solution-deletes/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</head>
1616
<body>
1717
<div id="message" class="shadow">
18-
<h2>Cloud Firestore Demo</h2>
18+
<h2>Firestore Demo</h2>
1919
<h1>Server-Side Deletes</h1>
2020
<p>Use the form below to initiate a delete.</p>
2121

firestore/solution-scheduled-backups/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Cloud Firestore Scheduled Backups
1+
# Firestore Scheduled Backups
22

33
This sample demonstrates using AppEngine cron jobs to run nightly backups
4-
of data in Cloud Firestore.
4+
of data in Firestore.
55

66
## Setup
77

@@ -11,7 +11,7 @@ Firestore database within the project.
1111

1212
### 2 - Configure IAM
1313
This sample will use the AppEngine default service account to perform
14-
backups of your Cloud Firestore data. To do this, you will need to give
14+
backups of your Firestore data. To do this, you will need to give
1515
the service account permission to access your data and save it to
1616
google cloud storage.
1717

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cron:
2-
- description: "Daily Cloud Firestore Export"
2+
- description: "Daily Firestore Export"
33
url: /cloud-firestore-export?outputUriPrefix=gs://BUCKET_NAME[/PATH]&collections=test1,test2
44
target: cloud-firestore-admin
5-
schedule: every 24 hours
5+
schedule: every 24 hours

firestore/solution-scheduled-backups/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "solution-scheduled-backups",
33
"version": "1.0.0",
4-
"description": "Scheduled Cloud Firestore backups via AppEngine cron",
4+
"description": "Scheduled Firestore backups via AppEngine cron",
55
"main": "app.js",
66
"engines": {
77
"node": "10.x.x"

functions/firestore-export/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "functions-firestore-export",
33
"version": "1.0.0",
4-
"description": "Scheduled Cloud Firestore exports.",
4+
"description": "Scheduled Firestore exports.",
55
"main": "index.js",
66
"author": "",
77
"license": "Apache-2.0",

0 commit comments

Comments
 (0)