Create Cloud9 instance

Create Cloud9 instance

  1. Go to Cloud9 service administration interface
    • Switch Region to Region you use for practice.
    • Click Create environment.

Cloud9

  1. In the Name field, enter serverless-development.

    • Click Next step.

Cloud9

  1. At the Configure Settings page.

    • Click to select t3.small.

Cloud9

  1. Select Next step.

Cloud9

  1. Check again and select Create environment

Cloud9

  1. Cloud9 instance creation will take a few minutes.
  • Click on close Welcome tab.

Cloud9

  1. Click +, then click New Terminal to open a new terminal interface.

Cloud9

  1. Install JQ to support JSON format with the command below.
sudo yum install jq -y

Cloud9

Make sure you have successfully installed JQ before performing the next steps.

  1. Copy the command below and paste it into the ** terminal ** interface.

    • This command is to create a directory containing sampleapp.
    • Change the path to the directory.
mkdir sampleapp
cd sampleapp

Cloud9

Next we will proceed to create the CodeCommit repository.