Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get code from firebase console which I deployed earlier

I had created firebase functions in nodejs and deployed the code on firebase. The function was to send an email when the new user is created. I have lost the code now. Can we pull that code from firebase ?

like image 656
Abhilasha Avatar asked May 11 '17 13:05

Abhilasha


People also ask

How do I check my logs in Firebase console?

You can see logs in real time using the Firebase console. Choose your project, click the Functions product on the left, then click the Logs tab.

How do I deploy Firebase to a different project?

When you first initialize your Firebase Hosting project with firebase init you specify what project you want to deploy your app to. This is your default project. The use command allows you to add another project. Select the project you want to use for a different environment, and then give it an alias.

What is Firebase CLI?

Realtime Database commands. Remote Config commands. The Firebase CLI (GitHub) provides a variety of tools for managing, viewing, and deploying to Firebase projects. Before using the Firebase CLI, set up a Firebase project.


2 Answers

Note: the process below may work or not for your case. Don't rely on it as a replacement for keeping your code in a proper version control system.

You can retrieve the code for your Cloud Functions from the Cloud Console.

  1. Go to this URL
  2. Select the project that the function is in
  3. Select a function from the list
  4. You will get to this page: Source tab of Google Cloud Functions

  5. Select the Source at the top

  6. Click the "Source location" link

A zip file with the latest source of your function will start to download.

Note that these files may periodically get deleted. In that case, the above process will not work to recover your source code.

like image 165
Frank van Puffelen Avatar answered Sep 24 '22 03:09

Frank van Puffelen


When you click to select your project, make sure you have the right organization selected.

Select Organization

like image 44
Clinton Avatar answered Sep 22 '22 03:09

Clinton