setup express boilerplate

This commit is contained in:
2025-11-14 17:40:10 -06:00
parent 072b15f3fd
commit e60c8a335c
4 changed files with 36 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
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!,
},
});