Created
January 25, 2016 20:48
-
-
Save particlebanana/60fc1d0b8b9c346963ae to your computer and use it in GitHub Desktop.
Mongo Connections Issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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