Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Exit from firebase serve --only functions in Terminal

In my terminal, I typed:

> MacBook-Pro-9:firecast $ firebase serve --only functions

I invoke realtime database functions for instance like:

myDatabaseFunction('old_data')

Then I was done. Is there a way to exit from the running process without having to close the terminal completely?

like image 938
Red M Avatar asked Jan 02 '23 15:01

Red M


1 Answers

You can use the following command to end an ongoing process:

ctrl + c (twice) or ctrl + shift + c

like image 128
Christophe Chenel Avatar answered Jan 05 '23 17:01

Christophe Chenel