Guest User

Untitled

a guest
Feb 1st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. module.exports = require('knex')({
  2. client: 'pg', // pg is for postgre
  3. connection: {
  4. host: process.env.POSTGRES_HOST || 'localhost', // default values
  5. user: process.env.POSTGRES_USER || 'testuser', //
  6. password: process.env.POSTGRES_PASSWORD || 'testpassword',//
  7. database: process.env.POSTGRES_DB || 'test',//
  8. },
  9. });
Add Comment
Please, Sign In to add comment