mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-archive.git
synced 2025-02-03 11:50:15 +00:00
22 lines
270 B
JavaScript
22 lines
270 B
JavaScript
'uses strict';
|
|
/**
|
|
*
|
|
* User: Martin Donnelly
|
|
* Date: 2016-03-11
|
|
* Time: 10:22
|
|
*
|
|
*/
|
|
|
|
var pgp = require('pg-promise')();
|
|
|
|
var cn = {
|
|
host: 'localhost',
|
|
port: 5432,
|
|
database: 'oBrand',
|
|
user: 'obrand',
|
|
password: 'obrand'
|
|
};
|
|
|
|
exports.dbConnection = pgp(cn);
|
|
|