4

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?

Red M
  • 2,609
  • 3
  • 30
  • 50

1 Answers1

9

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

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

Christophe Chenel
  • 1,802
  • 2
  • 15
  • 46