Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
nescalante committed Mar 15, 2021
1 parent 649e29e commit a64861b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/db.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
console.log('connecting using', `${process.env.DATABASE_URL}?sslmode=require`);
console.log('connecting using', `${process.env.DATABASE_URL}?ssl=true`);

const db = require('knex')({
client: 'pg',
connection: `${process.env.DATABASE_URL}?sslmode=require`
connection: `${process.env.DATABASE_URL}?ssl=true`
});

module.exports = db;

0 comments on commit a64861b

Please sign in to comment.