├── LICENSE ├── README.md ├── backend ├── .gitignore ├── config │ └── buildspec.dev.yml ├── handler.js └── serverless.yml └── frontend ├── .gitignore ├── README.md ├── amplify ├── .config │ └── project-config.json ├── backend │ ├── backend-config.json │ └── hosting │ │ └── S3AndCloudFront │ │ ├── parameters.json │ │ └── template.json └── team-provider-info.json ├── config └── buildspec.dev.yml ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── logo.svg └── serviceWorker.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/config/buildspec.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/backend/config/buildspec.dev.yml -------------------------------------------------------------------------------- /backend/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/backend/handler.js -------------------------------------------------------------------------------- /backend/serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/backend/serverless.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/amplify/.config/project-config.json -------------------------------------------------------------------------------- /frontend/amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /frontend/amplify/backend/hosting/S3AndCloudFront/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/amplify/backend/hosting/S3AndCloudFront/parameters.json -------------------------------------------------------------------------------- /frontend/amplify/backend/hosting/S3AndCloudFront/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/amplify/backend/hosting/S3AndCloudFront/template.json -------------------------------------------------------------------------------- /frontend/amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/amplify/team-provider-info.json -------------------------------------------------------------------------------- /frontend/config/buildspec.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/config/buildspec.dev.yml -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-Devops-Projects/Building-CI-CD-pipeline-for-Serverless-Application/HEAD/frontend/src/serviceWorker.js --------------------------------------------------------------------------------