You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### `hosting: Port 5000 is not open on localhost, could not start Hosting Emulator.`
135
+
136
+
This can happen when you run `yarn run demo:emulator` if port 5000 is taken.
137
+
Modify auth/demo/firebase.json with a custom port. Pick any port, this example picks 5091.
138
+
139
+
```
140
+
{
141
+
//...
142
+
"emulators": {
143
+
"hosting": {
144
+
"host": "",
145
+
"port": "5091"
146
+
}
147
+
}
148
+
}
149
+
```
150
+
151
+
### Error message about functions
152
+
153
+
`The Cloud Functions emulator requires the module "firebase-admin" to be installed. This package is in your package.json, but it's not available. You probably need to run "npm install" in your functions directory.
154
+
i functions: Your functions could not be parsed due to an issue with your node_modules (see above)
155
+
`
156
+
157
+
Run `npm install` inside the auth/demo/functions directory as mentioned in the error message.
0 commit comments