Initial commit

This commit is contained in:
2025-10-06 18:11:03 +02:00
commit 93cd6872a9
404 changed files with 35324 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'drizzle-kit';
// if (!process.env.DATABASE_URL) throw new Error('DATABASE_URL is not set');
export default defineConfig({
schema: './src/schemas/database/schema.ts',
dialect: 'postgresql',
dbCredentials: {
url: process.env.DATABASE_URL || 'postgresql://dummy:dummy@localhost:5432/dummy'
},
verbose: true,
strict: true
});