Mbitajeff / Building-Microservices-and-a-CI-CD-Pipeline-with-AWS

1 stars 0 forks source link

Phase 3: Creating a development environment and checking code into a Git repository #3

Open Mbitajeff opened 3 months ago

Mbitajeff commented 3 months ago

Task 3.1: Create an AWS Cloud9 IDE as your work environment

Subtasks: -Create a Cloud9 instance (t3.micro) in the specified VPC and subnet. -Configure the Cloud9 environment.

Mbitajeff commented 3 months ago

Task 3.2: Copy the application code to your IDE

Subtasks: -Download the labsuser.pem file. -Upload the .pem file to Cloud9 and set proper permissions. -Create a temp directory in Cloud9. -Copy the source code from MonolithicAppServer to the Cloud9 instance. -Verify the source code is copied correctly.

Mbitajeff commented 3 months ago

Task 3.3: Create working directories with starter code for the two microservices

Subtasks: -Create directories for customer and employee microservices. -Copy the monolithic application code to both directories. -Verify the directory structure.

Mbitajeff commented 3 months ago

Task 3.4: Create a Git repository for the microservices code and push the code to CodeCommit

Subtasks: -Initialize a Git repository in the microservices directory. -Create a dev branch and commit the code. -Push the code to the CodeCommit repository. -Configure Git with username and email. -Verify the code in the CodeCommit console.