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
2019-08-31 04:43:35 +05:00

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'
}
};