Category: Data Stores
Summary: Hosted Postgres + realtime + auth that can be used as a vector-enabled backend with extensions.
| Compatibility | Install | Run | Notes |
|---|---|---|---|
| Cloud, Local | npx supabase init -y |
supabase start |
Uses SUPABASE_URL and SUPABASE_SERVICE_ROLE_KEY env vars |
| Scope | Risk | Mitigation |
|---|---|---|
| Network | High | Use RLS, service roles, and rotate keys |
| Storage | Medium | Backups and encryption |
{
"command": "npx",
"args": ["supabase", "init", "-y"],
"env": {
"SUPABASE_URL": "${SUPABASE_URL}",
"SUPABASE_SERVICE_ROLE_KEY": "${SUPABASE_SERVICE_ROLE_KEY}"
}
}- Suggested category: Data Stores — great for managed Postgres and quick prototypes.
- Security rating: High for internet-exposed instances.
Last updated: 2026-01-28