basic db implementation

This commit is contained in:
CoGomu
2025-06-14 15:59:23 +02:00
parent 98be543b01
commit 5dc9b347e3
6 changed files with 231 additions and 19 deletions

10
backend/drizzle.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'drizzle-kit'
export default defineConfig({
out: './drizzle',
schema: './src/db/schema.ts',
dialect: 'sqlite',
dbCredentials: {
url: 'file:local.db'
}
})