DEV Community

vikash-agrawal
vikash-agrawal

Posted on

AWS Developer Tools

CodeStar

• It helps you to manage your project.

CodeCommit

• It helps you to store your code using different source control service repository like Git.

CodeBuild

• It helps you to build the code and the package ready.

$CodeDeploy
• It helps you to deploy the code through EC2 instance or lambda.

CodePipeline

• It helps you to integrate the code development life cycle to make release process smooth.

X-Ray

• it helps you to debug and analyze in finding the root cause of the issues.

Cloud 9

• it provides the infrastructure to develop your code so that you don’t need the IDE in your laptop.

The development life cycle, what we follow in our respective organization can be connected with the above mentioned services in the following ways:

Cloud 9 (IDE) ==> CodeStar (Development) ==> CodeCommit (Check in) ==> CodeBuild (Build) ==> CodeDeploy (Deployment) ==> CodePipeline (CI/CD) ==> X-Ray (Debug)

Top comments (0)