mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -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.set("view engine", "ejs");
|
||||||
app.use(
|
app.use(
|
||||||
session({
|
session({
|
||||||
store: new SQLiteStore({ dir: "./src/db/", db: "keynotes.db" }),
|
store: new SQLiteStore({ dir: "./db/", db: "keynotes.db" }),
|
||||||
secret: "keynotes",
|
secret: "keynotes",
|
||||||
cookie: { maxAge: 7 * 24 * 60 * 60 * 1000 },
|
cookie: { maxAge: 7 * 24 * 60 * 60 * 1000 },
|
||||||
saveUninitialized: false,
|
saveUninitialized: false,
|
||||||
|
|
|
@ -2,7 +2,7 @@ const { Database } = require("bun:sqlite");
|
||||||
const fs = require("node:fs");
|
const fs = require("node:fs");
|
||||||
const path = require("node:path");
|
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");
|
const dbPath = path.join(dbDirPath, "/keynotes.db");
|
||||||
|
|
||||||
if (!fs.existsSync(dbDirPath)) {
|
if (!fs.existsSync(dbDirPath)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue