Skip to content

Instantly share code, notes, and snippets.

@sobinsunny
Last active August 30, 2019 05:43
Show Gist options
  • Save sobinsunny/95800a75a8410307b8defd981ee7f5fd to your computer and use it in GitHub Desktop.
Save sobinsunny/95800a75a8410307b8defd981ee7f5fd to your computer and use it in GitHub Desktop.
var repl = require('repl');
var dotenv = require('dotenv');
dotenv.config();
const Knex = require('./knex-init')
const setupPaginator = require('knex-paginator');
setupPaginator(Knex);
const r = repl.start('Knex console > ');
const run = async () => {
r.context.knex = await Knex;
};
run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment