Database / Supabase basics Interview Questions
How do you create a new Supabase project and connect to it?
A new project is created either from the Supabase dashboard (choosing an organization, region, and database password) or from the CLI, which is common for teams that keep infrastructure in version control.
npx supabase init npx supabase login npx supabase link --project-ref your-project-ref npx supabase db pull
Once created, the project exposes a connection string for direct Postgres access, a REST/GraphQL URL, and an anon public API key used to initialize the client library in your app.
More Related questions...