CI/CD with AWS CodePipeline and CodeBuild
The article discusses the implementation of a CI/CD pipeline using AWS CodePipeline and CodeBuild. It details the automation of building and deploying a React application to S3 and CloudFront with every push to the main branch on GitHub. The setup requires specific configurations and permissions to connect AWS services with GitHub.
- ▪The pipeline automates the build and deployment process for a React app hosted on AWS.
- ▪AWS CodePipeline and CodeBuild are used in conjunction with GitHub for continuous integration and delivery.
- ▪Manual authorization is required to connect the GitHub app with AWS services.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 100411) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Josh Blair Posted on May 21 CI/CD with AWS CodePipeline and CodeBuild #aws #devops #tutorial #cicd Building bonefishsoftware.com from scratch (5 Part Series) 1 Building a Production Company Website on AWS — Project Overview 2 React + Vite + TypeScript + Tailwind CSS v4 — Project Setup 3 Static Site Hosting on AWS — S3, CloudFront, ACM, and Route 53 4 CI/CD with AWS CodePipeline and CodeBuild 5 Serverless Contact Form — Lambda, API Gateway, DynamoDB, and SES Overview Every push to the…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).