You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
planka_custom/server/db/knexfile.js

16 lines
269 B
JavaScript

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