(init): Keys and Prefix Management

This commit is contained in:
2026-06-21 23:56:50 -04:00
commit 80c747226f
50 changed files with 4631 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'drizzle-kit';
const dbURL = (process.env.TAM_DATA_DIR || "./data") + "/tam-local.db"
export default defineConfig({
schema: './src/lib/server/db/schema.js',
dialect: 'sqlite',
dbCredentials: { url: dbURL },
verbose: true,
strict: true
});