docs(client): improve the Client instance example (#2935)

This commit is contained in:
Samuel Durante 2023-03-30 12:49:28 -03:00 committed by GitHub
parent 65ca2458fd
commit 92351b5f3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,7 @@ const { Client } = require('pg')
const client = new Client({
host: 'my.database-server.com',
port: 5334,
database: 'database-name',
user: 'database-user',
password: 'secretpassword!!',
})