1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00

Normal and live search for bookmarks

This commit is contained in:
unknown 2021-09-06 13:22:47 +02:00
parent fac280ff0a
commit 53d50ca869
4 changed files with 111 additions and 69 deletions

4
db.js
View file

@ -5,7 +5,7 @@ const logger = new Logger();
const sequelize = new Sequelize({
dialect: 'sqlite',
storage: './data/db.sqlite',
logging: false
logging: false,
});
const connectDB = async () => {
@ -28,5 +28,5 @@ const connectDB = async () => {
module.exports = {
connectDB,
sequelize
sequelize,
};