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.
Matterwiki/bookshelf.js

8 lines
465 B
JavaScript

var config = require('./knexfile.js'); //requiring the knexfile that contains our connection object.
var env = 'development'; // specify the config enviroment
var knex = require('knex')(config[env]); // 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;