feat(auth): Add Clerk user sync to database using webhooks

This commit is contained in:
2024-11-21 01:53:43 -05:00
parent 8fc8da036c
commit 645b4b63aa
6 changed files with 375 additions and 40 deletions

View File

@@ -1,6 +1,9 @@
import 'dotenv/config';
import { config } from 'dotenv';
import { defineConfig } from 'drizzle-kit';
config({ path: '.env.local' });
export default defineConfig({
out: './drizzle',
schema: './src/db/schema.ts',