pg-diff-api
Version:
PostgreSQL migration strategy for NodeJS
17 lines (16 loc) • 331 B
JavaScript
module.exports = {
/** @type {String} */
host: "localhost",
/** @type {Number} */
port: 5432,
/** @type {String} */
database: null,
/** @type {String} */
user: "postgres",
/** @type {String} */
password: null,
/** @type {String} */
applicationName: "pg-diff-api",
/** @type {Boolean} */
ssl: false
};