You can configure the database settings in config/connections.js
.
Here's an example:
postgresql: {
database: 'databaseName',
host: 'localhost',
user: 'root',
password: '',
port: 5432,
poolSize: 10,
ssl: false
};
Alternatively, you can supply the connection information in URL format:
postgresql: {
url: 'postgres://username:password@hostname:port/database',
ssl: false
};