saoulbonmonsieur/server/db.js

11 lines
No EOL
204 B
JavaScript

const Pool = require("pg").Pool;
const pool = new Pool({
user: "postgres",
password: "postgres",
host: "localhost",
database: "saoulbonmonsieur",
port: 5432
})
module.exports = pool;