feat: finish better-auth config

This commit is contained in:
2026-01-06 17:28:54 -08:00
parent 5ef7625520
commit fb9176af10
8 changed files with 130 additions and 19 deletions

View File

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