1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/server/db/knexfile.js

26 lines
548 B
JavaScript
Raw Normal View History

2019-08-31 04:43:35 +05:00
const path = require('path');
2022-06-20 18:27:39 +02:00
const dotenv = require('dotenv');
const _ = require('lodash');
2019-08-31 04:43:35 +05:00
2022-06-20 18:27:39 +02:00
dotenv.config({
path: path.resolve(__dirname, '../.env'),
2019-08-31 04:07:25 +05:00
});
module.exports = {
client: 'pg',
connection: {
connectionString: process.env.DATABASE_URL,
ssl: {
rejectUnauthorized: false,
},
},
2019-08-31 04:07:25 +05:00
migrations: {
tableName: 'migration',
directory: path.join(__dirname, 'migrations'),
},
seeds: {
directory: path.join(__dirname, 'seeds'),
},
wrapIdentifier: (value, origImpl) => origImpl(_.snakeCase(value)),
2019-08-31 04:07:25 +05:00
};