If you're just using HTTPS
endpoints
Yes, use your server added and url, if your on your local network, thats the IP address of your computer running the local server - note don't forget to include the port too, e.g:
192.168.0.100:5000/endpointName
With regards to database triggers and onCall()
functions (rather than HTTPS
) I don't think they would work - however I don't know for sure.
also deploying to firebase
can be a time consuming process using:
firebase deploy
or sometimes even
firebase deploy --only functions
However the following example would only deploy one function that you can specify, which is significantly quicker in completing.
firebase deploy --only functions:endpointName
I Hope this helps!