Files
planka/server/db/knexfile.js
2019-08-31 04:43:35 +05:00

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