-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple instances & micro services #41
Comments
Are you trying to run these both off of Atom at once? Or is it one atom and another just the regular way from a terminal? |
I have two separate projects opened in two different atom windows. I have no issues running it from a terminal, but can't run it from Atom. |
I'm lagging behind here too. Didn't see the notifications. This package was designed to launch a single instance of Meteor... But with the rise of micro-services, this case starts to be a mandatory feature. Currently, the analyzed workspace is the first being launched. The settings overrides the environment variables when Meteor is launched letting it knows about the content of the That would to the trick for the moment but that would not tackle the problem of micro-services. I will think about it. PS: @akiarostami, I got the same issues as yours on OrionJS's CMS. I would like to separate the admin app from the main public app. For the moment, I haven't investigate too much in this topic but surely will. |
@akiarostami I've modified the title of the issue to bring more meaning 😉 |
Thank you! 👍 |
Hi,
First of all, thank you for the wonderful job!
My meteor app has two parts, both standard Meteor apps, using the same Mongo database.
Admin app: I run this app on my local (development) machine using the default settings (port 3000, meteor-handled mongo). I have no problem running this using Meteor-helper.
User app: I run this app on a different port (5555) and connect it to the admin app's mongo instance, using the following settings in mup.json file:
When I try to run the User app, I get a bunch of errors, including "No scheme found in URI undefined".
When this happens, I also get "Unexpected mongo exit code 0. Restarting." on the Admin app.
I know this may look a bit complicated, but it's actually very easy to replicate. It would be great if you could take a look at this problem.
Thank you!
The text was updated successfully, but these errors were encountered: