mirror of
https://github.com/Afilmory/afilmory
synced 2026-05-02 10:46:50 +00:00
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
import 'dotenv-expand/config'
|
|
|
|
import { env } from '@env'
|
|
import { defineConfig } from 'drizzle-kit'
|
|
|
|
export default defineConfig({
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: env.PG_CONNECTION_STRING,
|
|
},
|
|
schema: './src/schemas',
|
|
out: './drizzle',
|
|
})
|