Skip to content

Udit107710/ResumeBuilder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ResumeBuilder

To use the application you will have to set various env variables:

  1. AWS_ACCESS_KEY_ID # For S3 Bucket
  2. AWS_SECRET_ACCESS_KEY # For S3 Bucket
  3. AWS_STORAGE_BUCKET_NAME # For S3 Bucket
  4. AWS_S3_REGION_NAME # For S3 Bucket
  5. EMAIL_HOST_USER # For Email
  6. EMAIL_HOST_PASSWORD # For Email

Run in Postman

POST /api/send-resume
request data schema:

{
    "name" : "detail of person",
    "email" : "detail of person",
    "template" : "choice of template"
}

response data schema:

{
  "email": "successful/unsuccessful",
  "resume": "link to resume is succeeded"
}

GET /api/resumes
request data schema:
* no data required

response data schema:

{
  "files": ["list of resume templates link"]
}