Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 28, 2019 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6a601c394df889c17d0e8af9c9e6784d to your computer and use it in GitHub Desktop.
Save parzibyte/6a601c394df889c17d0e8af9c9e6784d to your computer and use it in GitHub Desktop.
const { Pool } = require("pg")
// Coloca aquí tus credenciales
const pool = new Pool({
user: "postgres",
host: "127.0.0.1",
database: "tienda",
password: "hunter2",
port: 5432,
});
module.exports = pool;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment