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
The Firebase Emulator Suite is very handy when developing apps using Firebase. So thanks for making it!
I recently updated a Firebase function to gen2. When deploying the function to production it failed because gen2 doesn't support storing secret keys in the functions.config(), part of the firebase-functions package. Instead one has to use Secret Manager in GC and read the values via process.env.
The Firebase Emulator Suite doesn't have the same requirement. It still supports "the old way". Thus, I was unable to detect this error in my code before updating my function in production.
The text was updated successfully, but these errors were encountered:
The Firebase Emulator Suite is very handy when developing apps using Firebase. So thanks for making it!
I recently updated a Firebase function to gen2. When deploying the function to production it failed because gen2 doesn't support storing secret keys in the functions.config(), part of the
firebase-functions
package. Instead one has to use Secret Manager in GC and read the values viaprocess.env
.The Firebase Emulator Suite doesn't have the same requirement. It still supports "the old way". Thus, I was unable to detect this error in my code before updating my function in production.
The text was updated successfully, but these errors were encountered: