← Have an idea? Share it! Settings and activity 1 result found Be able to run the firebase emulator in IDX 7 votes Vote Vote Vote We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close Vote We’ll send you updates on this idea 2 comments · General » Extensibility · Delete… · Admin → How important is this to you? Not at all You must login first! Important You must login first! Critical You must login first! We're glad you're herePlease sign in to leave feedback Signed in as (Sign out) Close Close An error occurred while saving the comment Marny López (iMrLopez) commented · Jan 31, 2024 · Edit… · Delete… I was actually able to run the emulators like this: in `firebase.json` change the emulators to use ports that are not used by IDX ``` "auth": { "port": 7777 }, "functions": { "port": 7776 }, "firestore": { "port": 7775 }, "ui": { "enabled": true, "port": 7774 }, ``` and then export the ports 1 by 1 in your terminal: ``` export port=7777 export port=7776 export port=7775 export port=7774 ``` and then run `firebase emulators:start` and it should start the emulators Save Submitting... Marny López (iMrLopez) shared this idea · Jan 31, 2024
I was actually able to run the emulators like this:
in `firebase.json` change the emulators to use ports that are not used by IDX
```
"auth": {
"port": 7777
},
"functions": {
"port": 7776
},
"firestore": {
"port": 7775
},
"ui": {
"enabled": true,
"port": 7774
},
```
and then export the ports 1 by 1 in your terminal:
```
export port=7777
export port=7776
export port=7775
export port=7774
```
and then run `firebase emulators:start` and it should start the emulators