server for auth, more goodies

This commit is contained in:
polwex 2026-04-19 00:54:39 +07:00
parent f83bce8e2b
commit 7cebe39a14
7 changed files with 80 additions and 24 deletions

View file

@ -1,8 +1,9 @@
import { SQL } from "bun"
import { runtimeConfig } from "./config"
const db = new SQL({
adapter: "sqlite",
filename: "./leo-typing.db",
filename: runtimeConfig.sqlitePath,
create: true,
strict: true,
})