mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02: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'
|
||
|
}
|
||
|
};
|