← back to StudentLoanTracker

src/lib/db.ts

9 lines

import { Pool } from 'pg';

const pool = new Pool({
  connectionString: process.env.DATABASE_URL || 'postgresql://dw_admin@127.0.0.1:5432/dw_unified',
});

export default pool;
export { pool };