0

I need to backup existing function (nodejs) on production firebase project. I have check docs and unfortunately can't find information how to do this.

CodeBy
  • 714
  • 4
  • 10
  • 25

1 Answers1

2

You can download or backup your deployed Firebase Function by following the steps:

  1. Go to Firebase Console, and select the project where your function deployed.
  2. Click the Functions to go to the dashboard
  3. Hover over the function name to show the vertical 3 dots and click the 3 dots.
  4. Click Detailed usage stats and it will redirect to Google Cloud Cloud Function Console.
  5. Look for SOURCE panel(between DETAILS and VARIABLE) and click.
  6. Find the DOWNLOAD ZIP button in the right side of screen and click.

It will start to download your latest source of your function in a zip file.

JM Gelilio
  • 3,482
  • 1
  • 11
  • 23