Deploying a standalone cloud feature for Firebase

I would like to be able to deploy a separate Cloud Function for Firebase so I don't have to deploy the whole project every time.

There is no option in the CLI, but if there is a rest API or some other interface that Google or Firebase provides to make this easier, that would be great.

+3


source to share


1 answer


The CLI provides the ability to deploy one feature:

firebase deploy --only functions:myFunction

      

or a list of functions:



firebase deploy --only functions:myFuncA,functions:myFuncB,functions:myFuncC

      

More details:

firebase deploy --help

      

+5


source







All Articles