To use the application you will have to set various env variables:
- AWS_ACCESS_KEY_ID # For S3 Bucket
- AWS_SECRET_ACCESS_KEY # For S3 Bucket
- AWS_STORAGE_BUCKET_NAME # For S3 Bucket
- AWS_S3_REGION_NAME # For S3 Bucket
- EMAIL_HOST_USER # For Email
- EMAIL_HOST_PASSWORD # For Email
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"]
}