Skip to content

Settings and activity

1 result found

  1. 7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Marny López (iMrLopez) commented  · 

    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

    Marny López (iMrLopez) shared this idea  ·