This repository has been archived on 2023-01-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
automate/packages/backend/bin/database/client.ts
T
2021-10-05 18:37:57 +02:00

10 lines
140 B
TypeScript

import { Client } from 'pg';
const client = new Client({
host: 'localhost',
user: 'postgres',
port: 5432,
})
export default client;