Ricerca…


Installare

È possibile installare l'adattatore PostgreSQL tramite NPM.

npm install sails-postgresql

Configurazione

È possibile configurare le impostazioni del database in config/connections.js .

Ecco un esempio:

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

In alternativa, puoi fornire le informazioni di connessione in formato URL:

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


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow