You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
329 B
JavaScript
16 lines
329 B
JavaScript
const path = require('path');
|
|
const _ = require('lodash');
|
|
|
|
require('dotenv').config({
|
|
path: path.resolve(__dirname, '../.env')
|
|
});
|
|
|
|
module.exports = {
|
|
client: 'pg',
|
|
connection: process.env.DATABASE_URL,
|
|
migrations: {
|
|
tableName: 'migration'
|
|
},
|
|
wrapIdentifier: (value, origImpl) => origImpl(_.snakeCase(value))
|
|
};
|