How would I use a (live running) MongoDB to develop another meteor app? I tried modifying (.meteor/server/server.js) and specifying MONGO_URL to no avail before running meteor.
This is without using the bundled MongoDB, it has to be a separate/custom one (basically of another meteor instance).
This can be done with the deploy method but what about the normal meteor run during development?
UPDATE: this does work however the client side implementation seems a bit glitchy
As mentioned in the Unofficial Meteor FAQ, you can invoke Meteor with the
MONGO_URLenvironment variable set to the desired instance:If your MongoDB handles multiple databases, you can indicate which one to use by appending it to the URL:
You can even prevent Meteor from starting a local Mongo instance in development by running: