Connection examples
-- Connect with psql
psql "postgresql://user:password@db.slivsbase.com:5432/mydb?sslmode=require"
-- Using Prisma
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
// Using node-postgres
import { Pool } from "pg";
const pool = new Pool({ connectionString: process.env.DATABASE_URL }); psql Prisma Drizzle SQLAlchemy node-postgres GORM
Getting started
Database management
Backups & recovery
Storage & compute by plan
| Plan | Storage | Compute | Connections |
|---|---|---|---|
| Free | 500 MB | Shared | Up to 20 |
| Pro | 20 GB | 2 vCPU / 4 GB | Up to 100 |
| Team | 100 GB | 4 vCPU / 16 GB | Up to 500 |
| Enterprise | Custom | Custom | Custom |