✨ Now with GPU compute & private Docker environments

Build in a weekend.
Scale to millions.

The open-source Postgres dev platform. Database, Auth, Storage, Edge Functions, Realtime, and GPU compute — all in one cozy place, at a fraction of the cost.

Start your project → ⌥ View on GitHub
100K+
Projects launched
99.99%
Uptime SLA
Cheaper than AWS
<50ms
Global latency
Everything you need to ship
One platform, no glue code. Every service talks to every other.
🗄️

Postgres Database

Every project gets a full PostgreSQL 16 database. 100% portable, battle-tested, infinitely extensible.

  • Auto-generated REST & GraphQL APIs
  • Row Level Security built-in
  • pgvector for AI embeddings
  • Full extensions support
🔐

Authentication

Production-ready auth in minutes. Email, OAuth, magic links, phone — all secured with JWT + RLS.

  • Email / Password
  • Google, GitHub, Discord OAuth
  • Magic Links & OTP
  • SAML SSO for enterprises

Edge Functions

Serverless Deno functions deployed globally. No cold starts. NPM compatible.

  • Deno runtime, NPM compatible
  • Global distribution
  • Zero cold starts
  • Regional invocations
💾

Storage

S3-compatible object storage with a built-in CDN. Store images, videos, and files at scale.

  • S3-compatible API
  • Global CDN delivery
  • Image transformations
  • Resumable uploads
📡

Realtime

Build multiplayer apps, live dashboards, and collaborative tools with WebSocket-powered pub/sub.

  • Postgres change streams
  • Broadcast channels
  • Presence (who's online)
  • Authorized subscriptions
🖥️

GPU & Docker

Rent dedicated GPU compute and private Docker sandboxes. Build, test, and deploy AI models.

  • Private Docker containers
  • GPU rental (NVIDIA A100, H100)
  • Persistent filesystems
  • Custom domain publishing
Simple, honest pricing
Start free. Scale when you're ready.
Free
$0 forever
Perfect for side projects and experiments
  • 2 projects
  • 500 MB database
  • 1 GB storage
  • 50K edge function invocations/mo
  • Community support
Get started free
Team
$49 / month
Collaborate with your team, at scale
  • Everything in Pro
  • SSO / SAML
  • 50 GB database
  • 1 TB storage
  • Read replicas
  • Priority support + SLA
Start Team
Start in seconds
One import. Full backend.
import { createClient } from '@alpacacloud/js'

const alp = createClient(
  'https://your-project.alpaca-cloud.com',
  'your-anon-key'
)

// Query your database
const { data, error } = await alp
  .from('posts')
  .select('id, title, author(name)')
  .eq('published', true)
  .order('created_at', { ascending: false })
  .limit(10)