Files
automatisch/packages/backend/bin/database/client.js
2024-01-04 21:07:19 +01:00

10 lines
141 B
JavaScript

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