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.
21 lines
468 B
JavaScript
21 lines
468 B
JavaScript
const path = require('path');
|
|
const dotenv = require('dotenv');
|
|
const _ = require('lodash');
|
|
|
|
dotenv.config({
|
|
path: path.resolve(__dirname, '../.env'),
|
|
});
|
|
|
|
module.exports = {
|
|
client: 'pg',
|
|
connection: process.env.DATABASE_URL,
|
|
migrations: {
|
|
tableName: 'migration',
|
|
directory: path.join(__dirname, 'migrations'),
|
|
},
|
|
seeds: {
|
|
directory: path.join(__dirname, 'seeds'),
|
|
},
|
|
wrapIdentifier: (value, origImpl) => origImpl(_.snakeCase(value)),
|
|
};
|