import "dotenv/config"; import { Client } from "pg"; // The pg client reads PGHOST, PGPORT, PGDATABASE, PGUSER, and PGPASSWORD from the environment. const client = new Client(); export default client;