Rebase Studio
A full-featured admin panel that generates real TypeScript code. Edit visually, ship as code, extend with React.
Visual Schema Editor
Build your data model visually — every change generates clean, version-controlled TypeScript collection files via AST transformation. What you see is what gets committed.
- ✓ 20+ built-in field types (text, number, date, enum, map, array, reference…)
- ✓ Relation editor with cardinality, direction, and cascade controls
- ✓ RLS security rules defined per collection
- ✓ Validation rules with Zod schema generation
SQL Editor
Write and execute SQL directly against your Postgres database from the admin UI. Schema-aware autocomplete, result previews, and query history — all integrated.
- ✓ Monaco-based editor with syntax highlighting
- ✓ Schema browser sidebar with table/column introspection
- ✓ Inline result table with sorting and pagination
- ✓ Saved snippets and query history
RLS Policy Editor
Manage Postgres Row-Level Security visually. Define policies per table, sync them between code and database, and see live status at a glance.
- ✓ Enable/disable RLS per table with one click
- ✓ Visual USING and WITH CHECK clause editor (Monaco)
- ✓ Sync code-based policies with live database
- ✓ PERMISSIVE / RESTRICTIVE modes, role targeting
Collection Editor
Every visual change generates clean, version-controlled TypeScript via AST transformation. What you see in the UI is what gets committed to your repo.
- ✓ Visual edits write to real TypeScript files
- ✓ Full collection config: properties, callbacks, security rules
- ✓ Zod schema generation for runtime validation
import { buildCollection } from "@rebasepro/core"; export const orders = buildCollection({ name: "Orders", properties: { customer: { type: "string", name: "Customer" }, total: { type: "number", name: "Total" }, status: { type: "string", enum: { pending: "Pending", shipped: "Shipped", delivered: "Delivered" } }, }, securityRules: [/* ... */], callbacks: { onSave: /* ... */ } });
Every visual change writes back to this file via AST transformation.
Schema Inference
Point Rebase at your existing PostgreSQL database. It introspects your tables, columns, types, and relations — then generates a full admin panel automatically. No config files to write.
More Studio Features
Everything you need to build and operate your admin panel.
Visual Schema Builder
Create and modify tables, columns, and relationships through a visual interface.
Row Level Security
Define granular permissions per role, per table — enforced natively in PostgreSQL.
Spreadsheet View
Inline editing, sorting, filtering, and bulk actions — like a supercharged spreadsheet for your database.
Entity History
Full audit trail of every change. See who modified what, when, and revert to any previous state.