Switch to Supabase

JWT to Supabase

Set AWS Config

At present, AWS uses a dummy config, so we don't need to change anything, but in actual implementation, you need to set poolId and appClientId in the following file. For more detail refer to supabase here:https://supabase.com/

.env
...

## Supabase

VITE_SUPABASE_URL=
VITE_SUPABASE_ANON_KEY=

...

Change Config

src\config.ts
export const APP_AUTH: AuthProvider = AuthProvider.SUPABASE;

Change AuthProvider

Comment another provider in the following file and uncomment Supabase one.

src/App.tsx
import { SupabseProvider as AuthProvider } from 'contexts/SupabaseContext';

Change Auth Hooks

Comment another context in the following file and uncomment Supabase one.

src/hooks/useAuth.ts
import AuthContext from 'contexts/SupabaseContext';

Last updated