I'm trying to run the meteor documentation server and my app at the same time, but I can only run one at a time, out of the box. They both run their own instance of mongodb and so the ports colide...
I'm trying to run the meteor documentation server and my app at the same time, but I can only run one at a time, out of the box. They both run their own instance of mongodb and so the ports colide...
When launching either your app or the documentation meteor app, do:
meteor --port [anything but 3000 or 3001]
Running with the default settings will take ports 3000 and 3001 as well as another higher port for mongod. You shouldn't get mongod ports clashing if you use different values for --port when starting the meteor app (including the documentation server, which is just another meteor app).