Open-source Firebase alternative with Postgres
Supabase provides a full backend suite — Postgres database, authentication, storage, edge functions, and real-time subscriptions.
Use Supabase through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
import { createClient } from "@supabase/supabase-js";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
const supabase = createClient(
"https://xxx.supabase.co",
"placeholder"
);
const { data } = await supabase
.from("users")
.select("*")
.eq("active", true);Request access and our concierge team will provision credentials for you — usually within 24 hours. No setup on your end.
Request Access