16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
import pg from 'pg';
|
|
const { Pool } = pg;
|
|
|
|
import {
|
|
PG_USER,
|
|
PG_PASS,
|
|
PG_HOST,
|
|
PG_PORT,
|
|
PG_DB,
|
|
} from '$env/static/private'
|
|
const connectionString = `postgres://${PG_USER}:${PG_PASS}@${PG_HOST}:${PG_PORT}/${PG_DB}`;
|
|
|
|
const pool = new Pool({ connectionString });
|
|
|
|
export const getConnection = () => pool;
|