For the complete documentation index, see llms.txt. This page is also available as Markdown.

Switch to AWS Cognito

JWT to AWS Cognito

  1. 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 details, refer to AWS here: https://aws.amazon.com/cognito/

.env
...

## AWS

VITE_APP_AWS_POOL_ID=
VITE_APP_AWS_APP_CLIENT_ID=

...
  1. Change Config

src/config.ts
export const APP_AUTH: AuthProvider = AuthProvider.AWS;
  1. Change AuthProvider

Comment out another provider in the following file and uncomment the AWS one.

src/App.tsx
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';
  1. Change auth Hooks

Comment out another context in the following file and uncomment the AWS one.

Last updated