1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 21:29:43 +02:00
planka/server/db/knexfile.js

16 lines
269 B
JavaScript
Raw Normal View History

2019-08-31 04:43:35 +05:00
const path = require('path');
2019-08-31 04:07:25 +05:00
require('dotenv').config({
2019-08-31 04:43:35 +05:00
path: path.resolve(__dirname, '../.env')
2019-08-31 04:07:25 +05:00
});
// Update with your config settings.
module.exports = {
client: 'pg',
connection: process.env.DATABASE_URL,
migrations: {
tableName: 'migration'
}
};