From 5c09c5a22f18f6b0bf8b9841d6fe266b6b1a0085 Mon Sep 17 00:00:00 2001 From: Mike Smith <89040888+smiggiddy@users.noreply.github.com> Date: Mon, 31 Mar 2025 20:16:56 -0400 Subject: [PATCH] fix: update the db path --- messages/src/app.js | 2 +- messages/src/models/db.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/messages/src/app.js b/messages/src/app.js index 2b432ca..8f08af3 100644 --- a/messages/src/app.js +++ b/messages/src/app.js @@ -18,7 +18,7 @@ app.set("views", path.join(__dirname, "views")); app.set("view engine", "ejs"); app.use( session({ - store: new SQLiteStore({ dir: "./src/db/", db: "keynotes.db" }), + store: new SQLiteStore({ dir: "./db/", db: "keynotes.db" }), secret: "keynotes", cookie: { maxAge: 7 * 24 * 60 * 60 * 1000 }, saveUninitialized: false, diff --git a/messages/src/models/db.js b/messages/src/models/db.js index 681d9c2..4c1f04b 100644 --- a/messages/src/models/db.js +++ b/messages/src/models/db.js @@ -2,7 +2,7 @@ const { Database } = require("bun:sqlite"); const fs = require("node:fs"); const path = require("node:path"); -const dbDirPath = path.join(path.dirname(__dirname), "db"); +const dbDirPath = path.join(path.dirname(__dirname), "../db"); const dbPath = path.join(dbDirPath, "/keynotes.db"); if (!fs.existsSync(dbDirPath)) {