Supabase
Use an existing Supabase project
If your app already has a Supabase project (most Base44 and Lovable apps do):- In your Supabase dashboard, go to Settings → API
- Copy your Project URL and service_role key
- In Nometria configuration, select Use existing Supabase project and paste these values
- Nometria connects to your project and verifies the schema
Create a new Supabase project
If you’re migrating from a builder’s managed database to your own:- In Nometria configuration, select Create new Supabase project
- Enter a project name and choose a region
- Nometria provisions a new Supabase project via the Supabase Management API
- Your schema is migrated automatically — tables, relationships, indexes, RLS policies
Schema migration
During setup, Nometria:- Exports the SQL schema from your source (builder’s Supabase or your existing project)
- Replays it against your new Supabase project using
psql - Verifies all tables and foreign keys are present
- Optionally seeds your data if you provide a seed SQL file
RLS (Row Level Security) policies are migrated as-is. If your builder generated RLS policies, they carry over to your own project unchanged.
Supabase Edge Functions
If your app uses Supabase Edge Functions, Nometria deploys them to your new project using the Supabase CLI. Edge Functions run on Deno at the edge, close to your users.Appwrite
Appwrite is an alternative to Supabase with document-based collections, built-in file storage, and a different authentication model.Connect existing Appwrite project
- Go to your Appwrite Console → API Keys → create a key with full permissions
- In Nometria configuration, select Use existing Appwrite project
- Paste your Endpoint, Project ID, and API Key
Migrate from Supabase to Appwrite
If your builder used Supabase but you want to switch to Appwrite: For most vibe-coded apps that don’t have complex SQL queries, Nometria can map Supabase tables to Appwrite collections. Contact support for complex schemas.Firebase to Supabase
If your app uses Firebase (Firestore + Firebase Auth), see the dedicated migration guide:Firebase → Supabase migration guide
Step-by-step guide to migrating from Firebase to Supabase