mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
15 lines
269 B
JavaScript
Executable file
15 lines
269 B
JavaScript
Executable file
const path = require('path');
|
|
|
|
require('dotenv').config({
|
|
path: path.resolve(__dirname, '../.env')
|
|
});
|
|
|
|
// Update with your config settings.
|
|
|
|
module.exports = {
|
|
client: 'pg',
|
|
connection: process.env.DATABASE_URL,
|
|
migrations: {
|
|
tableName: 'migration'
|
|
}
|
|
};
|