Rust Actix Web Service

Description

This is a simple web service written in Rust using the Actix web framework. The service has a single endpoint that returns a JSON response.

The demo app is the Greedy Algorithm to find Minimum number of Coins.

Say we have only have 1, 5, 10, 25 cents and we need to give 1 dollar and 3 cents in total to someone. The greedy algorithm will suggest us to hand in 25, 25, 25, 25, 1, 1 and 1 cent coins. This app will return the json response as follows:

{
"cents":3,
"change":[25,25,25,25,1,1,1],
"dollars":1
}
image

Flowchart of the app

flowchart

How to run the app

Running the app locally with docker container

  1. Clone the repository
  2. Run the following command to start the app docker build -t myimage . docker run -dp 3000:3000 myimage #runs in background #find image docker ps #kill image (from id you found) #docker stop 4a496e7eab64

Screenshot of the app running on the docker container

Terminal

Screenshot of running 1 Screenshot of container Screenshot of running 2

Browser

Screenshot of running 3 Screenshot of running 4