Contact: aviboots(AT)netvision.net.il
42,656 questions
55,403 answers
573 users
// db.ts import { Pool } from "pg"; export const pool = new Pool({ user: "postgres", host: "localhost", database: "your_database_name", password: "your_password", port: 5432, });