inserting signature endpoint and database methods

This commit is contained in:
John Costa
2025-11-07 17:53:46 +01:00
parent 13414f95cc
commit 42e4abf438
9 changed files with 280 additions and 1 deletions

View File

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