Files
automatisch/packages/backend/bin/database/client.ts
2022-11-05 23:57:33 +01:00

10 lines
141 B
TypeScript

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