mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 11:00:58 -04:00
fix: update the db path
This commit is contained in:
parent
63656eb864
commit
5c09c5a22f
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue