Problem
I'm building a couple of 3rd party packages that relies on mutiple instances of the same application running against the same database. I'm currently unable to run multiple instances of the same source, unless I copy the entire source and run my second instance from it. I think there's a number of scenarios where it would be valuable to easily run the same app on different ports.
From my perspective, this would be pretty cool:
D:\> cd documents\projects\someMeteorProject
D:\documents\projects\someMeteorProject> meteor --port 3000
D:\documents\projects\someMeteorProject> meteor --port 4000
If I try this right now, my second instance gets the following output:
[[[[[ ~\D:\documents\projects\someMeteorProject ]]]]]
=> Started proxy.
<runJavaScript-77>:168
throw error;
^
Error: EBUSY, rmdir 'D:\documents\projects\someMeteorProject\.meteor\local\build\programs\server'
PS D:\documents\projects\someMeteorProject>
I imagine this is because it's trying to rebuild on top of the code that has already been built and is executing?...