C9

Cloud9 is an integrated development environment that runs on a virtual machine. It includes a text editor, file manager, and Linux terminal that you can access directly from the browser.

To access the development environment you will need an account on Amazon Web Services (AWS). You can create the account here.

The free tier has all the resources needed for the activities proposed in the labs. Before using a resource make sure is included in the package so it won't generate extra costs. Details are availabel here.

Configure a Cloud9 environment

The detailed documentation is available at the following address https://docs.aws.amazon.com/cloud9/latest/user-guide/welcome.html

Follow this instructuions to create a new environment

  1. Navigate in the Cloud9 console

https://console.aws.amazon.com/cloud9/

  1. Press "Create environment"

create environment
  1. Step 1 - Provide a name

environment name
  1. Step 2 - Configure the desired settings

Important! Choose a t1.micro instance type to stay in the free tier. Choose Ubuntu Server 18.04.

environment setting
  1. Step 3 - Confirm the settings and press "Create environment"

You will get redirected to a new page. In a few minutes the setup will be finished.

cloud9

Getting familiar with the development environment

A complete tour is available at the following address https://docs.aws.amazon.com/cloud9/latest/user-guide/tour-ide.html

The most used functions are:

  1. The file manager

  2. The bash terminal

  3. The text editor

c9 ide

The file manager is located on the left side. Here you will find all the files and directories form /home/ubuntu/environment.

The bash terminal is located on the right side bottom.

Test it with some linux commands

List the contents of the current directory:

ls

Show the path to the current directory:

pwd
bash terminal

Editorul de text este localizat în partea dreaptă sus.

Firewall settings

Next we need to configure firewall settings so that we can allow access to the ports that will be used frequently.

  1. Navigate in the AWS console - https://console.aws.amazon.com/ec2/

aws console
  1. List EC2 instances

ec2 instances
  1. Find the Security Groups column and click on it

security groups
  1. Navigate in the Inbound tab and press eddit Edit

edit inbound rules
  1. Add ports 8080, 3000, 3001

add inbound rules
  1. Press Save

Last updated

Was this helpful?