feat: Add Docker support and fix build issues

This commit is contained in:
Danny Morabito 2025-07-06 16:50:51 +02:00
parent c6ce63b6fa
commit c16dc1d694
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
3 changed files with 68 additions and 1 deletions

View file

@ -3,7 +3,7 @@ import { ENCRYPTION_KEY } from "./config";
import { browser } from "$app/environment";
const db = browser ? null : createClient({
url: "file:portal-btc.db",
url: "file:/data/portal-btc.db",
encryptionKey: ENCRYPTION_KEY,
});