Files
automatisch/packages/backend/bin/database/client.js
2024-01-04 12:17:48 +01:00

10 lines
141 B
JavaScript

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