Red M
Red M

Reputation: 2789

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?

Upvotes: 4

Views: 1845

Answers (2)

Atif
Atif

Reputation: 1

type "exit" to exit from cli.

Upvotes: 0

Christophe Chenel
Christophe Chenel

Reputation: 1921

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

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

Upvotes: 10

Related Questions