12 lines
191 B
JavaScript
Executable File
12 lines
191 B
JavaScript
Executable File
require('dotenv').config();
|
|
|
|
module.exports = {
|
|
development: {
|
|
client: 'pg',
|
|
connection: process.env.DATABASE_URL,
|
|
migrations: {
|
|
directory: './migrations',
|
|
},
|
|
},
|
|
};
|