mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 22:34:54 +08:00
6 lines
706 B
Plaintext
6 lines
706 B
Plaintext
This tutorial demonstrates how to build a basic user management app. The app authenticates and identifies the user, stores their profile information in the database, and allows the user to log in, update their profile details, and upload a profile photo. The app uses:
|
|
|
|
- [Supabase Database](/docs/guides/database) - a Postgres database for storing your user data and [Row Level Security](/docs/guides/auth#row-level-security) so data is protected and users can only access their own information.
|
|
- [Supabase Auth](/docs/guides/auth) - users log in through magic links sent to their email (without having to set up passwords).
|
|
- [Supabase Storage](/docs/guides/storage) - users can upload a profile photo.
|