fix: update the db path

This commit is contained in:
Mike 2025-03-31 20:16:56 -04:00
parent 63656eb864
commit 5c09c5a22f
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

@ -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)) {