Recherche…


Installer

Vous pouvez installer l'adaptateur postgreSQL via NPM.

npm install sails-postgresql

Configuration

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

Voici un exemple:

postgresql: {
  database: 'databaseName',
  host: 'localhost',
  user: 'root',
  password: '',
  port: 5432,
  poolSize: 10,
  ssl: false
};

Vous pouvez également fournir les informations de connexion au format URL:

postgresql: {
  url: 'postgres://username:password@hostname:port/database',
  ssl: false
};


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