How run multiple meteor servers on different ports

vamsi kr picture vamsi kr · Oct 30, 2014 · Viewed 17.3k times · Source

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.

Answer

Dan Dascalescu picture Dan Dascalescu · Oct 30, 2014

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.