boring.tools-poc/packages/database/drizzle.ci.config.ts
Lars Hampe d2ee997ac7
All checks were successful
Build and Push Docker Image / tests (push) Successful in 35s
Build and Push Docker Image / build (push) Successful in 2m35s
Add testing ci pipeline (#1)
Reviewed-on: boring.tools/boring.tools#1
Co-authored-by: Lars Hampe <hello@hashdot.co>
Co-committed-by: Lars Hampe <hello@hashdot.co>
2024-10-01 17:04:13 +00:00

12 lines
267 B
TypeScript

import { defineConfig } from 'drizzle-kit'
export default defineConfig({
schema: './src/schema/index.ts',
out: './src/migrations',
dialect: 'postgresql',
dbCredentials: {
url: process.env.POSTGRES_URL as string,
},
verbose: false,
strict: false,
})