7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
|
import config from 'config';
|
||
|
|
||
|
export default {
|
||
|
client: 'pg',
|
||
|
connection: { ...config.get('database') }, // avoid "cannot redefine password" error
|
||
|
};
|