https://github.com/dbtek/supabase-auth-selfservice-ui
User interface for all Supabase Auth flows (login, registration, account settings, account recovery, account verification).
https://github.com/dbtek/supabase-auth-selfservice-ui
Last synced: about 1 year ago
JSON representation
User interface for all Supabase Auth flows (login, registration, account settings, account recovery, account verification).
- Host: GitHub
- URL: https://github.com/dbtek/supabase-auth-selfservice-ui
- Owner: dbtek
- Created: 2023-11-07T08:48:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-08T11:47:05.000Z (over 2 years ago)
- Last Synced: 2025-04-10T23:52:01.222Z (about 1 year ago)
- Language: TypeScript
- Size: 766 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Supabase Auth Self Service UI (SASS)
===
User interface for all Supabase Auth flows (login, registration, account settings, account recovery, account verification).

### Usage
SASS is intended to be used as is (customization allowed with configuration options) on a subdirectory (e.g. https://exaple.com/auth) or a subdomain (e.g. https://accounts.example.com).
To run it locally please see [docker-compose.yml](./docker-compose.yml).
### Development
First copy sample environment variables file:
```bash
cp .env.local-sample .env-local
```
Set up Supabase access url and keys in `.env-local`.
Development requires [Node.js](https://nodejs.org) 20.
```bash
# install dependencies
$ npm i
# run next application in dev mode
$ npm run dev
```