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