Skip to content

This repository is for carsales internal workshop titled "Cloud"

Notifications You must be signed in to change notification settings

go4tech-au/cloud-internal-devops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to build a Simple Node.js application using a cloud platform as a Service solution (PaaS)

In this exercise we are going to create a simple web application using a particular cloud solution called Heroku (Saleforce) that is based on a platform as a services more commonly known as PaaS.

Prerequisites

To start the exercise you need to have installed/created the following components:

0.- Admin access for installing software in your computer 1.- Email account (for linking it with Heroku account)
2.- Heroku account
3.- If you are using Unix-like platform, a Package Manager and depending of the OS:
3a.- macOS: Homebrew
3b.- Linux (Debian/Ubuntu based systems): apt-get/aptitude
4.- Heroku Command Line Interface (CLI)
5.- Node.js and npm
6.- Git / Git Bash (Microsoft Windows)
7a.- Powershell or CMD (Microsoft Windows Command Prompt) if you are using a Microsoft Windows
7b.- Terminal prompt if you are using a Unix-like platform (macOS or Linux)
8.- Simple Text editor (for instance, Notepad, Notepad ++)

1.- How to ^

1.- Create an email account:
As a suggestion you can create an Gmail account that has a free basic service here, but feel free to create an email account in your favorite email service *If you already have an account that you could/would like link with the Heroku account, this steps is an alternative one and you do need to create a new one.

2.- Create an Heroku account:
For creating an Heroku account you just need to have an email account and provide the necessary information as your name, country and the development language (in this case you have to chose node.js since the exercise is based on this particular technology) here.

3.- Install the Package Manager:
This step only apply if you are using a macOS system because in a Linux platform normally the package manager is already installed by default.
To Install Homebrew, open the Terminal Command Line and run:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

4.- Install Heroku Command Line Interface:
Once you have the Heroku account created, you have to install the Heroku Command Line tool for creating and managing Heroku applications from the command line / shell.

  • For Windows intallation, download and run the Windows installer here and setup it with the default options.

  • For macOS open a terminal command line and run:

brew install heroku/brew/heroku
  • For Debian/Ubuntu run the following to add our apt repository and install the CLI:
wget -qO- https://cli-assets.heroku.com/install-ubuntu.sh | sh
  • For all platform to check out the installation, open a command line terminal and type:
heroku version

5.- Install Node.js and npm:
For the training purpose we are going to use Node.js as a program language and npm as the package manager that is used by Node.js.

  • For Microsoft Windows platform get the proper installer from https://nodejs.org/en/download/ . Normally the Windows Installer (.msi) 64-bit version

  • For macOS platform using Homebrew, open a terminal command line and run:

*Also, as an alternative way you can get the proper installer as well from https://nodejs.org/en/download/ (macOS Installer (.pkg))

brew install node
  • For Debian/Ubuntu platform open a terminal command line and run:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
  • For all platform to check the installation run in your terminal command line:
# Node.js version
node -v
# nmp version
npm -v

6.- Install Git / Git Bash (Microsoft Windows)

  • For Windows download Here the latest installer. Once the file has been download successfully, you have to start the installation process configuring it with the default options.

  • For macOS using Homebrew, open a terminal command line and run:

brew install git

*As an alternative installation option you can get the installer from here

  • For Debian/Ubuntu using apt-get, open a terminal command line and run:
sudo apt-get update
sudo apt-get install git
  • For all platform to confirm the installation was successful by typing:
git --version

If you would like to know more about how to use git here you are a book's link to understand everything about git. Enjoy it ;)!

7.- Install Powershell or CMD (Microsoft Windows Command Prompt) if you are using a Microsoft Windows or Terminal command line if you are using a Unix-like platform (macOS or Linux)
In most cases, you do not need to install anything since by default these applications are already installed .

8.- Install a simple text editor
By default Windows, macOS, and Linux systems have a default and basic text editor already installed, but most of them are not user friendly so as an alternative option (and because is one of the popular ones), you can install Sublime Text editor from here

Other options are: Atom, Visual Studio Code or Brackets (you only need to have one of those or any other one).

2.- Deploying a Node.js Apps on a cloud Platform as a Service in this particular case on Heroku

1.- Configure the email account that you has used it in the Heroku account to associate it with the control version application (in this case it correspond to Git) before deploy the simple application or webpage.

git config --global user.name "YourFirstName YourLastName"
git config --global user.email YourHerokuEmailAccount@youremailservice.com
  • To confirm the configuration type:
git config -l

2.- Login into Heroku using your credential:

heroku login
  • You will see something like this:
C:>heroku login
Enter your Heroku credentials:
Email: YourHerokuEmailAccount@youremailservice.com
Password: ************
Logged in as YourHerokuEmailAccount@youremailservice.com

3.- Setup your application

In this step you are going to setup the sample application. For doing it the first thing you have to do is clone it using one of the most popular control versioning program that is Git:

  • To clone the sample repository type the following command:
git clone https://github.com/go4tech-au/cloud-internal-devops.git

The aim of the above step is to copy the sample source code that is in the remote repository (https://github.com/go4tech-au/cloud-internal-devops.git) to your local machine / personal computer so the result of that is a directory called cloud-internal-devops

  • The output seems like this:
Cloning into 'cloud-internal-devops'...
remote: Counting objects: 29, done.
remote: Compressing objects: 100% (22/22), done.
remote: Total 29 (delta 10), reused 22 (delta 6), pack-reused 0
Unpacking objects: 100% (29/29), done.
  • Enter to the directory application from the command line:
cd cloud-internal-devops

At this point you have the git repository that contains a simple application that includes for instance, a package.json file, which is used by NodeJS dependency manager.

  • Now you are able to create the application. In this case you are going to provide the name that you like based in the your YourHerokuEmailAccount name (but you can also name it with the name that you want, but it need to be unique so if you choose one that already exist, you are going to get an error) :
heroku create YourHerokuEmailAccount
  • Output:
Creating  YourHerokuEmailAccount... done
https://YourHerokuEmailAccount.herokuapp.com/ | https://git.heroku.com/YourHerokuEmailAccount.git

As you can see in the output information it creates a git remote (called heroku) that is also associated with your local git repository. To confirm this type:

git remote -v

4- Deploy the application

In this moment, you are able to deploy the code :). In the command line run the following:

git push heroku master
  • If everything goes well, the output should look like this:
Counting objects: 29, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (28/28), done.
Writing objects: 100% (29/29), 15.50 KiB | 3.10 MiB/s, done.
Total 29 (delta 10), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Node.js app detected
remote:
remote: -----> Creating runtime environment
remote:
remote:        NPM_CONFIG_LOGLEVEL=error
remote:        NPM_CONFIG_PRODUCTION=true
remote:        NODE_VERBOSE=false
remote:        NODE_ENV=production
remote:        NODE_MODULES_CACHE=true
remote:
remote: -----> Installing binaries
remote:        engines.node (package.json):  8.9.1
remote:        engines.npm (package.json):   unspecified (use default)
remote:
remote:        Resolving node version 8.9.1...
remote:        Downloading and installing node 8.9.1...
remote:        Using default npm version: 5.5.1
remote:
remote: -----> Restoring cache
remote:        Skipping cache restore (not-found)
remote:
remote: -----> Building dependencies
remote:        Installing node modules (package.json + package-lock)
remote:        added 61 packages in 1.792s
remote:
remote: -----> Caching build
remote:        Clearing previous node cache
remote:        Saving 2 cacheDirectories (default):
remote:        - node_modules
remote:        - bower_components (nothing to cache)
remote:
remote: -----> Build succeeded!
remote: -----> Discovering process types
remote:        Procfile declares types     -> (none)
remote:        Default types for buildpack -> web
remote:
remote: -----> Compressing...
remote:        Done: 17.8M
remote: -----> Launching...
remote:        Released v3
remote:        https://YourHerokuEmailAccount.herokuapp.com/ deployed to Heroku
remote:
remote: Verifying deploy... done.
To https://git.heroku.com/YourHerokuEmailAccount.git
 * [new branch]      master -> master
  • And finally you are able to check out your application living in the cloud on a Platform as a Service (PaaS) solution!
https://YourHerokuEmailAccount.herokuapp.com/index.html

3.- Check logs

Create, build and deploy an application is only the beginning of its life's cycle, since you have to be sure it is working as expected. In order to achieve this, one of the most important tasks is get and analyze the logging information because it provides you feedback about the activity and performance of the application as well as information about any problems that the application is having.

  • To check the logs of your application run the following command:
heroku logs --tail
  • Now open again your application to see logging information
https://YourHerokuEmailAccount.herokuapp.com/index.html
  • Change the endpoint of the url:
https://YourHerokuEmailAccount.herokuapp.com/about.html

1.- Create a new application release:

Once the public AWS S3 bucket has been created, change in the index.html file using your text editor application, the code-lines that reference the images configuration that need to be loaded on the web page:

  • In the line number 7 of the file index.html:

From this:

href="https://github.com/verofa/SimpleSample_HTML-NodeJs/blob/master/images/cloud_logo.png?raw=true"
  • To this:
href="https://s3.ap-southeast-2.amazonaws.com/g4t-beginner-ws-xx/cloud_logo.png"
  • In the line number 19 of the file index.html:

From this:

href="https://openclipart.org/download/238921/1453940593.svg"
  • To this:
href="https://s3.ap-southeast-2.amazonaws.com/g4t-beginner-ws-xx/Thumbs-Up.svg"
  • In the line number 20 of the file index.html:

From this:

href="https://github.com/verofa/SimpleSample_HTML-NodeJs/blob/master/images/DevOpsCarsalesLogo.png?raw=true"
  • To this:
href="https://s3.ap-southeast-2.amazonaws.com/g4t-beginner-ws-xx/DevOpsCarsalesLogo.png"

Or as an alternative, you can change the text for your favorite sentence in the same file:

  • In the line number 17 of the file index.html:

From this:

<center><h1 style="font-family:verdana"> Congratulations! you have been deployed your simple HTML static page </h1></center>

To this:

<center><h1 style="font-family:verdana"> YOUR FAVORITE SENETECE HERE </h1></center>

After that, you need to apply and deploy the new changes of your application using the version control program in this case Git typing the following commands:

  • To check out what file or files are changed:
git status
  • To add the new changes to the repository:
git add index.html
  • To add a comment about the new changes to the repository:
git commit -m "changing images endpoint to a public S3 bucket or text"
  • And finally, push the changes to the Heroku repository, that is going to deploy the application as well:
git push heroku master
  • Open your application with the new changes:
heroku open
  • And check again what is happening in the application analising the log information:
heroku logs --tail
  • Can you see the images with the new endpoint configuration? (if the answer is yes, well done and congratulation! and if the answer in no, it does not matter because "We learn from our mistakes" :))

4.- Manage / configure resources

Heroku works with dyno that is a lightweight container (or also you can think that is a tiny virtual machine) that runs the command specified in a configuration file (in this case the Procfile)

By default, your app is deployed on a free dyno. Free dynos will sleep after a half hour of inactivity (if they don’t receive any traffic). This causes a delay of a few seconds for the first request upon waking.

  • To check how many dynos are running type the following command line:
heroku ps

Scaling an application on Heroku is equivalent to changing the number of dynos that are running. Scale the number of web dynos to zero:

heroku ps:scale web=0

Access the app again by hitting refresh on the web tab, or Heroku open to open it in a web tab. What do you think that is happening? (Do you remember how to check the log information)

Scale it up again:

heroku ps:scale web=0

Access the app again by hitting refresh on the web tab, or heroku open to open it in a web tab.

If everything goes good you have learnt the basic step about how to start the DevOps journey building an application based on a Platform as a Service cloud solution!! congratulations!!!

About

This repository is for carsales internal workshop titled "Cloud"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published