Connect to a remote database.
// Simple connection stringconst db = await connectDatabase('postgresql://user:pass@host/db');// With full configconst db = await connectDatabase({ host: 'db.example.com', database: 'myapp', user: 'dbuser', password: process.env.DB_PASSWORD, ssl: true}); Copy
// Simple connection stringconst db = await connectDatabase('postgresql://user:pass@host/db');// With full configconst db = await connectDatabase({ host: 'db.example.com', database: 'myapp', user: 'dbuser', password: process.env.DB_PASSWORD, ssl: true});
Connect to a remote database.