Last active
August 30, 2019 05:43
-
-
Save sobinsunny/95800a75a8410307b8defd981ee7f5fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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