ServicesSupabase
Production
Deploy Supabase to the cloud.
Create project
Go to supabase.com/dashboard and create a new project. Note your Project URL and API keys (Settings → API).
Push migrations
supabase link --project-ref YOUR_PROJECT_REF
supabase db pushThis creates all tables (profiles, instances, subscriptions, provision_jobs), RLS policies, and triggers.
Configure auth
In the Supabase dashboard under Authentication → URL Configuration:
- Site URL:
https://your-console-domain.com - Redirect URLs:
https://your-console-domain.com/auth/callback
Enable OAuth providers under Authentication → Providers (Google, GitHub, etc.) as needed.
Save your keys
SUPABASE_URL=https://xxxxx.supabase.co
SUPABASE_ANON_KEY=eyJ...
SUPABASE_SERVICE_ROLE_KEY=eyJ...