
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@seibert/firestore-backup-function
Advanced tools
A small helper function to initialize a Firebase Function which creates Firestore backups according to the given schedule
A small helper function to initialize a Firebase Function which creates Firestore backups according to the given schedule
To be able to back up data, you'll need to add the importExportAdmin
role to the service account you are using:
gcloud projects add-iam-policy-binding <PROJECT_NAME> --member serviceAccount:<SERVICE_ACCOUNT_NAME>@appspot.gserviceaccount.com --role roles/datastore.importExportAdmin
If the bucket you want to back up to doesn't exist yet create it (make sure it's in an accessible region):
gsutil mb -l <REGION> gs://my-backup-bucket
Simply add this export to your Firebase project's index.ts/js
to enable Firestore backups for that project:
import { createFirestoreBackupFunction } from "@seibert/firestore-backup-function";
// Note that all of these parameters are optional and use a reasonable default
exports.firestoreBackup = createFirestoreBackupFunction({
// The ID of the Firebase project. (default: process.env.GCP_PROJECT || process.env.GCLOUD_PROJECT)
projectId: "my-firebase-project",
// The schedule for your backup. (default: "every day 03:00")
schedule: "every 24 hours",
// The URI of the bucket backups are saved to. (default: `gs://${ projectId }-firestore-backup`)
bucketUri: "gs://my-backup-bucket",
// How long until your backup function runs into a timeout (max and default: 540 seconds)
timeoutSeconds: 300,
// List of regions the cloud function is deployed to (default: ["europe-west1"])
regions: ["europe-west3"],
});
To restore from a previously created backup run the following gcloud
command (using the previously defined bucket URI):
gcloud firestore import gs://my-backup-bucket/2017-05-25T23:54:39_76544/
FAQs
A small helper function to initialize a Firebase Function which creates Firestore backups according to the given schedule
We found that @seibert/firestore-backup-function demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.