수색…


설치

NPM을 통해 postgreSQL 어댑터를 설치할 수 있습니다.

npm install sails-postgresql

구성

config/connections.js 에서 데이터베이스 설정을 구성 할 수 있습니다.

다음은 그 예입니다.

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

또는 URL 형식으로 연결 정보를 제공 할 수 있습니다.

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


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow