meteormeteor-up

How run multiple meteor servers on different ports


How can meteor run on multiple ports.For example if the meteor run on 3000 i need another meteor app run on the same terminal.Please help me.


Solution

  • You can use the --port parameter:

    `meteor run --port 3030`
    

    To learn more about command line parameters, run meteor help <command>, e.g. meteor help run.

    I see you've tagged your question . If you're actually using mup, check out the env parameter in the config file.