mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 17:30:25 -04:00
e6e24aadad
* Draft * Update text for guide * Update text for guide * Update code for newer next js versions * Final small change * Update apps/docs/content/_partials/project_setup.mdx Co-authored-by: Charis <26616127+charislam@users.noreply.github.com> * Changes from review * Use project name in tutorial text * Fix up inclusion * Fix inclusion * Prettier --------- Co-authored-by: Charis <26616127+charislam@users.noreply.github.com>
6 lines
655 B
Plaintext
6 lines
655 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) - allow users to sign up and log in.
|
|
- [Supabase Storage](/docs/guides/storage) - allow users to upload a profile photo.
|