Database / Supabase basics Interview Questions
What are the core services offered by Supabase?
A Supabase project bundles several services around one Postgres database. The main ones are: a managed Postgres Database, Auth for user sign-up and session management, auto-generated APIs (REST and GraphQL), Storage for files, Realtime for live data streaming, and Edge Functions for custom serverless logic.
| Service | Primary Use |
| Auth | User accounts, sessions, OAuth providers |
| Storage | File and media buckets |
| Realtime | Live change broadcasting |
| Edge Functions | Custom serverless logic |
More Related questions...