19 lines
337 B
TypeScript
19 lines
337 B
TypeScript
import pg from 'pg';
|
|
const { Pool } = pg;
|
|
|
|
import {
|
|
DB_USER,
|
|
DB_PASS,
|
|
DB_HOST,
|
|
PG_PORT,
|
|
DB_DATABASE,
|
|
} from '$env/static/private'
|
|
const connectionString = `postgres://${DB_USER}:${DB_PASS}@${DB_HOST}:${PG_PORT}/${DB_DATABASE}`;
|
|
|
|
const pool = new Pool({
|
|
connectionString: connectionString,
|
|
max: 2,
|
|
});
|
|
|
|
export default pool;
|