I'm running
firebase emulators:start
and getting
firestore emulator has exited upon receiving signal: SIGINT
I'm running
firebase emulators:start
and getting
firestore emulator has exited upon receiving signal: SIGINT
i had this issue and i just fixed it, install firebase tools like so:
npm install -g firebase-tools
and then log into the firebase project like this:
firebase login -p <PROJECT_NAME>
and it would work
As it says in the error message, you need to setup your emulator first:
firebase setup:emulators:firestore
More info: https://firebase.google.com/docs/rules/emulator-setup
Well the only solution, I've discovered to this is to run that same command firebase emulators:start
again and again and again. Until it works. Works for me every time. Hilariously!!! yes.
I don't know what really happens under the hood but, That's just a hacky way to do it.
I got the same issue. Finally it worked through making this request before starting the emulators again :
npm install -g firebase-tools