├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── backend ├── src │ ├── resumeService │ │ ├── addExperience │ │ │ └── handler.js │ │ └── getExperience │ │ │ └── handler.js │ └── sharedLayers │ │ └── libs │ │ └── awsLayer │ │ └── nodejs │ │ ├── package-lock.json │ │ └── package.json ├── template.yaml └── templates │ ├── api │ ├── api-definition.yaml │ └── template.yaml │ ├── sharedLayer │ └── template.yaml │ ├── storage │ └── template.yaml │ └── tables │ └── template.yaml ├── deploy.js └── public ├── index.html ├── scripts.js └── styles.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/README.md -------------------------------------------------------------------------------- /backend/src/resumeService/addExperience/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/src/resumeService/addExperience/handler.js -------------------------------------------------------------------------------- /backend/src/resumeService/getExperience/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/src/resumeService/getExperience/handler.js -------------------------------------------------------------------------------- /backend/src/sharedLayers/libs/awsLayer/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/src/sharedLayers/libs/awsLayer/nodejs/package-lock.json -------------------------------------------------------------------------------- /backend/src/sharedLayers/libs/awsLayer/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/src/sharedLayers/libs/awsLayer/nodejs/package.json -------------------------------------------------------------------------------- /backend/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/template.yaml -------------------------------------------------------------------------------- /backend/templates/api/api-definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/templates/api/api-definition.yaml -------------------------------------------------------------------------------- /backend/templates/api/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/templates/api/template.yaml -------------------------------------------------------------------------------- /backend/templates/sharedLayer/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/templates/sharedLayer/template.yaml -------------------------------------------------------------------------------- /backend/templates/storage/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/templates/storage/template.yaml -------------------------------------------------------------------------------- /backend/templates/tables/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/backend/templates/tables/template.yaml -------------------------------------------------------------------------------- /deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/deploy.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/public/index.html -------------------------------------------------------------------------------- /public/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/public/scripts.js -------------------------------------------------------------------------------- /public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgarc/shpe-conference-2020/HEAD/public/styles.css --------------------------------------------------------------------------------