mirror of
https://github.com/SrIzan10/helium.git
synced 2026-06-05 16:46:51 +00:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { defineConfig } from 'drizzle-kit';
|
|
|
|
export default defineConfig({
|
|
schema: './app/lib/db/schema.ts',
|
|
out: './drizzle',
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL!,
|
|
},
|
|
});
|