https://github.com/killshot13/supabase-quickstart-react
Created with CodeSandbox
https://github.com/killshot13/supabase-quickstart-react
Last synced: 10 months ago
JSON representation
Created with CodeSandbox
- Host: GitHub
- URL: https://github.com/killshot13/supabase-quickstart-react
- Owner: killshot13
- Created: 2022-12-10T13:20:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-10T14:05:45.000Z (about 3 years ago)
- Last Synced: 2025-02-07T12:46:37.872Z (12 months ago)
- Language: JavaScript
- Homepage: https://codesandbox.io/s/github/killshot13/supabase-quickstart-react
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# supabase-quickstart-react
## **Working example**
### How to use
1. Download the example [or clone the repo](https://github.com/killshot13/supabase-quickstart-react):
```sh
curl https://codeload.github.com/killshot13/supabase-quickstart-react/tar.gz/main | tar -xz
cd supabase-quickstart-react-main
```
2. Install it and run:
```sh
npm install
npm start
```
or:
[](https://codesandbox.io/s/github/killshot13/supabase-quickstart-react)
3. Sign up for a [free Supabase account](https://app.supabase.com)
4. Use the [quickstart guide](https://supabase.com/docs/guides/with-react) to learn how to create your own Supabase instance complete with an API key.
5. Replace the generic placeholder text with your API URL and anon key as environment variables in the .env file.
6. Enter an email address of your choosing into the running application and experience the magic!
## The idea behind the example (per the Supabase documentation)
> This example provides the steps to build a basic user management app. It includes:
>
>- Supabase Database: a Postgres database for storing your user data.
>- Supabase Auth: users can sign in with magic links (no passwords, only email)
>- Supabase Storage: users can upload a photo.
>- Row Level Security: data is protected so that individuals can only access their own data.
>- Instant APIs: APIs will be automatically generated when you create your database tables.
>
> By the end of this guide you'll have an app which allows users to login and update some basic profile details."