Skip to content
This repository was archived by the owner on Mar 9, 2020. It is now read-only.

Latest commit

 

History

History
13 lines (10 loc) · 248 Bytes

File metadata and controls

13 lines (10 loc) · 248 Bytes

qovery-javascript-client

Get Qovery instance

const qovery = new Qovery();

const db = qovery.getDatabaseByName("my-pql");

const host = db.host;
const port = db.port;
const username = db.username;
const password = db.password;