aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/postgres.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/pipeline/src/postgres.ts')
-rw-r--r--packages/pipeline/src/postgres.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/pipeline/src/postgres.ts b/packages/pipeline/src/postgres.ts
deleted file mode 100644
index d095e5c9e..000000000
--- a/packages/pipeline/src/postgres.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import * as dotenv from 'dotenv';
-import { Pool, PoolConfig } from 'pg';
-dotenv.config();
-const client: PoolConfig = {
- user: process.env.AURORA_USER,
- database: process.env.AURORA_DB,
- password: process.env.AURORA_PASSWORD,
- port: parseInt(process.env.AURORA_PORT || '5432', 10),
- host: process.env.AURORA_HOST,
-};
-const postgresClient = new Pool(client);
-export { postgresClient };