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.
7 lines
394 B
JavaScript
7 lines
394 B
JavaScript
var config = require('./knexfile.js'); //requiring the knexfile that contains our connection object.
|
|
var knex = require('knex')(config); // imports knex with our connection object (found in knexfile).
|
|
var bookshelf = require('bookshelf')(knex); //imports bookshelf along with our knex config.
|
|
|
|
// Exporting the bookshelf module for use in other files.
|
|
module.exports = bookshelf;
|