-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.js
More file actions
49 lines (39 loc) · 1.16 KB
/
db.js
File metadata and controls
49 lines (39 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const pg = require('pg');
const club = require('./models/club');
const user = require('./models/user');
//require the url library
//this comes with node, so no need to yarn add
const url = require('url');
//check to see if we have this heroku environment variable
if (process.env.DATABASE_URL) {
//we need to take apart the url so we can set the appropriate configs
const params = url.parse(process.env.DATABASE_URL);
const auth = params.auth.split(':');
//make the configs object
var configs = {
user: auth[0],
password: auth[1],
host: params.hostname,
port: params.port,
database: params.pathname.split('/')[1],
ssl: true
};
} else {
const configs = {
user: '1ung',
host: '127.0.0.1',
database: 'project_2',
port: 5432
}
};
//this is the same
const pool = new pg.Pool(configs);
// pool.query('SELECT * FROM users', [], (err, res) => {if (err) {console.log(err)}; console.log(res)})
pool.on('error', function (err) {
console.log('idle client error', err.message, err.stack);
});
module.exports = {
pool: pool,
user: user(pool),
club: club(pool)
};