AppReports/lib/db/index.js

38 lines
883 B
JavaScript
Raw Normal View History

2020-08-19 12:33:09 +02:00
/*
* Copyright (C) Sapphirecode - All Rights Reserved
* This file is part of appreports which is released under GPL-3.0-or-later.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, August 2020
*/
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-22 10:43:35 +02:00
else
await db.seed.run ({ specific: 'prod.js' });
2020-07-29 20:56:03 +02:00
}
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 };