Recherche…


Configuration

Vous pouvez configurer les paramètres de la base de données dans config/connections.js .

Exemple:

someMongoDb: {
  adapter: 'sails-mongo',
  host: 'localhost', // defaults to `localhost` if omitted
  port: 27017, // defaults to 27017 if omitted
  user: 'username_here', // or omit if not relevant
  password: 'password_here', // or omit if not relevant
  database: 'database_name_here' // or omit if not relevant
}

Vous pouvez également spécifier votre configuration Mongo en tant qu'URL

someMongoDb: {
  adapter: 'sails-mongo',
  url: mongodb://username:password@hostname:port/database
}

Installation

Installer à partir de NPM.

npm install sails-mongo --save


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow