Q. How can I leverage mongo-dev-server to utilize an internal MongoDB in my Meteor project while also using an external MongoDB with 'export MONGO_URL'?
Explanation: I know that MongoDB should be fully installed for production mode, but sometimes I require a temporary local database for performance in a scaled-out service.
In such cases, setting up an external local MongoDB is an option, but using mongo-dev-server for a temporary DB would be more convenient.
Clarification:
I intend to use both an external MongoDB, configured through 'export MONGO_URL', and the default internal MongoDB that runs automatically with the meteor command.
Issue arises when I set the MONGO_URL while running meteor, as the internal MongoDB does not run by default.