Skip to content

Instantly share code, notes, and snippets.

@particlebanana
Created January 25, 2016 20:48
Show Gist options
  • Save particlebanana/60fc1d0b8b9c346963ae to your computer and use it in GitHub Desktop.
Save particlebanana/60fc1d0b8b9c346963ae to your computer and use it in GitHub Desktop.
Mongo Connections Issue
module.exports.connections = {
localMongoDb: {
adapter: 'sails-mongo',
host: 'localhost',
port: 27017,
database: 'mongo-one'
},
localMongoDbTwo: {
adapter: 'sails-mongo',
host: 'localhost',
port: 27017,
database: 'mongo-two'
}
};
module.exports.models = {
connection: 'localMongoDbTwo',
migrate: 'alter'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment