6 lines
216 B
TypeScript
Executable file
6 lines
216 B
TypeScript
Executable file
import postgresConfig from '../db-helper-postgres/drizzle.config'
|
|
import sqliteConfig from '../db-helper-sqlite/drizzle.config'
|
|
|
|
export default process.env.DB_DIALECT === 'sqlite'
|
|
? sqliteConfig
|
|
: postgresConfig
|