Switch to AWS Cognito

Firebase to AWS Cognito

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 AWS here: https://aws.amazon.com/cognito/

..\src\config.js
...

export const AWS_API = {
    poolId: 'poolid',
    appClientId: 'appid'
};

...

Change AuthProvider

..\src\App.js
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';

Change auth Hooks

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

..\src\hooks\useAuth.js
import AuthContext from 'contexts/AWSCognitoContext';

Copy login code

It's also super simple. We have provided a code that just needs to be replaced.

  • From: src\sections\auth\login\AWSCognitoLogin

  • To: src\sections\auth\auth-forms\AuthLogin.js

For nextJS, src\components\Authentication\login\JWTLogin to src\components\Authentication\auth-forms\AuthLogin.tsx

Copy register code

We have provided a code that just needs to be replaced.

  • From: src\sections\auth\register\AWSCognitoRegister

  • To: src\sections\auth\auth-forms\AuthRegister.js

For nextJS, src\components\Authentication\login\JWTRegister to src\components\Authentication\auth-forms\AuthRegister.tsx

Last updated