10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { defineConfig } from '../../src';
|
|
|
|
export default defineConfig({
|
|
schema: './schema.ts',
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: 'postgresql://postgres:postgres@127.0.0.1:5432/db',
|
|
},
|
|
});
|