Merge pull request #373 from jonaspm/fix/example-sqlite-paths

fix: update local database URL to remove 'file:' prefix in examples
This commit is contained in:
dswbx
2026-03-28 11:24:07 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import { type BunBkndConfig, serve } from "bknd/adapter/bun";
// this is optional, if omitted, it uses an in-memory database
const config: BunBkndConfig = {
connection: {
url: "file:data.db",
url: "data.db",
},
config: {
media: {
+1 -1
View File
@@ -7,7 +7,7 @@ import { serve } from "bknd/adapter/node";
/** @type {import("bknd/adapter/node").NodeBkndConfig} */
const config = {
connection: {
url: "file:data.db",
url: "data.db",
},
config: {
media: {