mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 12:49:43 +02:00
33 lines
703 B
JavaScript
Executable file
33 lines
703 B
JavaScript
Executable file
const path = require('path');
|
|
const dotenv = require('dotenv');
|
|
const _ = require('lodash');
|
|
|
|
dotenv.config({
|
|
path: path.resolve(__dirname, '../.env'),
|
|
});
|
|
|
|
function buildSSLConfig() {
|
|
if (process.env.KNEX_REJECT_UNAUTHORIZED_SSL_CERTIFICATE === 'false') {
|
|
return {
|
|
rejectUnauthorized: false,
|
|
};
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
module.exports = {
|
|
client: 'pg',
|
|
connection: {
|
|
connectionString: process.env.DATABASE_URL,
|
|
ssl: buildSSLConfig(),
|
|
},
|
|
migrations: {
|
|
tableName: 'migration',
|
|
directory: path.join(__dirname, 'migrations'),
|
|
},
|
|
seeds: {
|
|
directory: path.join(__dirname, 'seeds'),
|
|
},
|
|
wrapIdentifier: (value, origImpl) => origImpl(_.snakeCase(value)),
|
|
};
|