mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 17:23:21 +03:00
14 lines
208 B
JavaScript
14 lines
208 B
JavaScript
|
|
require('dotenv').config({
|
||
|
|
path: '..'
|
||
|
|
});
|
||
|
|
|
||
|
|
// Update with your config settings.
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
client: 'pg',
|
||
|
|
connection: process.env.DATABASE_URL,
|
||
|
|
migrations: {
|
||
|
|
tableName: 'migration'
|
||
|
|
}
|
||
|
|
};
|