Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
remove sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmmy committed Jun 18, 2018
1 parent c3b3286 commit 41b4f03
Show file tree
Hide file tree
Showing 3 changed files with 385 additions and 1,109 deletions.
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const bb = require("express-busboy");
const handlebars = require("express-handlebars");
const promBundle = require("express-prom-bundle");
const session = require("express-session");
const SQLiteStore = require("connect-sqlite3")(session);
const helpers = require("handlebars-helpers")();
const dateformat = require("helper-dateformat");
const Finder = require("fs-finder");
Expand Down Expand Up @@ -109,8 +108,7 @@ app.use(session({
secret: config.sessionSecret,
cookie: {},
resave: false,
saveUninitialized: true,
store: new SQLiteStore
saveUninitialized: true
}));

bb.extend(app, {
Expand Down
Loading

0 comments on commit 41b4f03

Please sign in to comment.