initial commit

This commit is contained in:
2025-06-02 10:18:56 +02:00
commit 34ad15ac33
7 changed files with 396 additions and 0 deletions

10
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'
}
})