- You need to add your email and password in configuration file i.e => config.development.json file which email account you have to use to send the mail through nodemailer
- npm install
- Create build using => yarn build
- Run the backend server using => yarn dev
- Install mongoDB and create one database => email-verification
- Install angular cli using => npm install -g @angular/cli
- npm install
{
"schema_name": "user",
"columns": [
{
"first_name": "string";
"last_name": "string";
"email": "string";
"mobile": "string";
"password": "string";
"last_otp": "string";
"is_verified": "string";
"random_key": "string";
"is_deleted": "number";
}
],
}
1. schema_name: Table Name which need to be created.
2. columns : Column Deatils
- /login => To login the verified user
- /sign-up => To create new User
- /resend-email => To resend the mail for verification
- /verify-email/{id} => To verify mail using link which is sent by register mail