- Have Fun!!!
- Understand and discussion the deploy phase of an application.
- Introduction to cloud computing and self hosting.
- Stepping stone towards DevOps and Containerization.
- Stepping stone towards utilizing existing APIs.
- Reading and understanding Documentation; Extracting relevant information and potentially transferring concepts to other apps / cloud providers.
- Slides
- Create AWS Account
- Demo - Create an EC2 instance. please use Ubuntu for now.
- Reference: AWS - EC2 getting started
- Track your current Free Usage.
- Goto EC2 dashboard.
- Click on
Security
- clck on the security group for your instance
- Click on
Edit inbound rules
- Then
add rule
for port3000
fromAnywhere
- Install NodeJS
- Install a simple HTTP server
sudo npm install -g http-server
- Run the server to listen on port 3000
http-server --port 3000
- Check the address of your instance and make sure it works!!
http://<Your address here>:3000
- Install PM2
- git clone or transfer your earlier code to this instance. You make this easier by just having a simple helloworld app found on expressjs.com to begin with.
- Install Dependencies :
npm install
- Start the app using PM2
pm2 start ./bin/www
Quickstart - Verify it works!
- Install locust
- Those who want to stick to NodeJS, try Artillery
- Read about most popular metrics : p95, average and Std. Div
- Write a locust file for load testing the create Flight API you developed in earlier labs
On Canvas
- The link to your app running online in AWS.
- Compare the performance of your website locally and on the free webserver
- Anything else you think that comes in the way / is helpful.
- Deploy your clientside app as well!? One idea is to combine your (Frontend) work with this lab's work and deploy this web app.
- Deploy on Google / Azure cloud services.
- Deploy a Database server to go with this.
- serve your website on HTTPS instead of HTTP
- Auto scale your EC2 instances
- Use environment variables.
- Use AWS Beanstalk to deploy your app instead.