mirror of
https://github.com/plankanban/planka.git
synced 2025-12-17 01:11:23 +03:00
16 lines
329 B
JavaScript
Executable File
16 lines
329 B
JavaScript
Executable File
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))
|
|
};
|