mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-18 16:31:38 +01:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
import { defineConfig } from "drizzle-kit";
|
|
|
|
const url = `postgresql://admin:abcdefgh@localhost:5432/twitchbot`;
|
|
|
|
export default defineConfig({
|
|
dialect: 'postgresql',
|
|
schema: './src/db/schema.ts',
|
|
dbCredentials: { url }
|
|
});
|