UNPKG

284 BJavaScriptView Raw
1module.exports = {
2 client: 'pg',
3 connection: {
4 database: process.env.POSTGRES_DB,
5 user: process.env.POSTGRES_USER
6 },
7 useNullAsDefault: true,
8 asyncStackTraces: true,
9 migrations: {
10 directory: 'tests/migrations'
11 },
12 seeds: {
13 directory: 'tests/seeds'
14 }
15}