AppReports/lib/db/index.js

29 lines
586 B
JavaScript
Raw Normal View History

2020-07-29 20:56:03 +02:00
'use strict';
const knex = require ('knex');
let db = null;
async function init (use_fake_seed) {
db = knex ({
client: 'sqlite',
connection: { filename: 'db.sqlite' },
migrations: { directory: 'migrations' },
seeds: { directory: 'seeds' },
useNullAsDefault: true
});
await db.migrate.latest ();
if (use_fake_seed)
await db.seed.run ({ specific: 'fake.js' });
}
2020-08-16 11:48:06 +02:00
function get_db () {
return db;
2020-07-29 20:56:03 +02:00
}
2020-08-16 11:48:06 +02:00
const log = require ('./log') (get_db);
const app = require ('./app') (get_db);
module.exports = { init, log, app };