8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import {drizzle} from "drizzle-orm/postgres-js";
|
|
import postgres from "postgres";
|
|
import "../../load-env";
|
|
|
|
const queryClient = postgres("postgresql://postgres:nova0511@localhost:5432/lst_db");
|
|
|
|
export const db = drizzle(queryClient);
|