Поиск…


конфигурация

Вы можете настроить параметры базы данных в config/connections.js .

Пример:

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
}

Кроме того, вы можете указать свою конфигурацию Mongo как URL-адрес

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

Монтаж

Установить с NPM.

npm install sails-mongo --save


Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow