feat: initial commit

This commit is contained in:
2026-01-06 10:43:40 -08:00
parent e509aaa51d
commit 5ef7625520
6 changed files with 554 additions and 1 deletions

11
drizzle.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import 'dotenv/config';
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: './drizzle',
schema: './src/db/schema.ts',
dialect: 'postgresql',
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});